This commit is contained in:
2026-01-23 22:23:31 +01:00
parent f01de7a8e6
commit 3684d98456
5 changed files with 200 additions and 0 deletions

16
docker-compose.yml Normal file
View File

@@ -0,0 +1,16 @@
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