Files
KSP_project/docker-compose.yml
T
2026-05-08 15:16:04 +08:00

11 lines
195 B
YAML

services:
web:
build:
context: .
env_file:
- .env
ports:
- "${APP_PORT:-8000}:8000"
restart: unless-stopped
command: gunicorn --bind 0.0.0.0:8000 main:app