17 lines
499 B
YAML
17 lines
499 B
YAML
services:
|
|
web:
|
|
build: .
|
|
image: signage:latest
|
|
ports:
|
|
- "8000:8000"
|
|
environment:
|
|
# Override in a .env file or your shell; this default is only for convenience.
|
|
SECRET_KEY: "change-me"
|
|
# Optional overrides (the Dockerfile already defaults these)
|
|
GUNICORN_WORKERS: "2"
|
|
GUNICORN_BIND: "0.0.0.0:8000"
|
|
volumes:
|
|
# Persist SQLite DB and uploads on the host
|
|
- ./instance:/app/instance
|
|
- ./app/static/uploads:/app/app/static/uploads
|