Files
ushort/docker-compose.yml
T
2026-03-18 02:55:58 +08:00

15 lines
357 B
YAML

services:
urlshort:
image: python:3.11-slim
working_dir: /app
command: ["python", "-u", "urlshort.py", "config.json"]
ports:
- "127.0.0.1:18082:8080"
volumes:
- ./urlshort.py:/app/urlshort.py:ro
- ./config.json:/app/config.json:ro
- ./static:/app/static:ro
- ./data:/app/data
restart: unless-stopped