This commit is contained in:
2025-08-31 00:29:53 +02:00
parent 191bd84573
commit 29611b15ca
87 changed files with 2451 additions and 0 deletions

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

@@ -0,0 +1,15 @@
services:
web:
restart: "no"
ports:
- "${LISTEN_PORT:-8000}:80"
volumes:
- ./nginx/dev.nginx:/etc/nginx/nginx.conf:ro
app:
volumes:
- ./app:/app
restart: "no"
command: >
sh -c "python manage.py migrate --noinput &&
./dev_run.sh"