11 lines
195 B
YAML
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
|