revert 7ecd65b9c2
All checks were successful
Gitea build & Test. / docker (push) Successful in 6s

revert cleanup
This commit is contained in:
2026-03-08 13:56:48 +00:00
parent 7ecd65b9c2
commit 86c3cfe426
3 changed files with 30 additions and 0 deletions

View File

@@ -3,4 +3,16 @@ services:
command: gunicorn -b 0.0.0.0:8000 website.wsgi:application command: gunicorn -b 0.0.0.0:8000 website.wsgi:application
volumes: volumes:
- ./src:/src - ./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

View File

@@ -0,0 +1,10 @@
services:
web:
env_file:
- path: .env
required: true
db:
env_file:
- path: .env
required: true

View File

@@ -2,4 +2,12 @@ services:
web: web:
command: python -Wa manage.py test --noinput --parallel command: python -Wa manage.py test --noinput --parallel
restart: "no" restart: "no"
env_file:
- path: .env.template
required: true
db:
env_file:
- path: .env.template
required: true