This commit is contained in:
2025-03-13 22:08:06 +01:00
commit bab5571428
93 changed files with 4323 additions and 0 deletions

29
docker-compose.dev.yml Normal file
View File

@@ -0,0 +1,29 @@
services:
redis:
restart: "no"
web:
restart: "no"
volumes:
- ./nginx/dev.nginx:/etc/nginx/conf.d/default.conf:ro
transmission:
restart: "no"
ports: !reset []
app:
restart: "no"
ports:
- "${DEV_SERVER_PORT:-8080}:${DEV_SERVER_PORT:-8080}"
command: >
bash -c "sleep 2
&& python manage.py migrate
&& ./dev_run.sh"
# celery:
# restart: "no"
# command: >
# bash -c "sleep 5 & celery -A app worker -E -B"
event:
restart: "no"