Files
Quatsh-Website/.docker-compose-files/compose.dev.yaml
WGAVermeer c17e3e85f2
Some checks failed
Gitea build & Test. / tests (push) Failing after 21s
added auto-reload when developing.
2026-03-25 17:11:14 +01:00

19 lines
380 B
YAML

services:
web:
command: gunicorn --capture-output --enable-stdio-inheritance -b 0.0.0.0:8000 website.wsgi:application
volumes:
- ./src:/src
env_file:
- path: .env.template
required: true
- path: .env
required: false
db:
env_file:
- path: .env.template
required: true
- path: .env
required: false