diff options
author | Yulqen <246857+yulqen@users.noreply.github.com> | 2024-06-05 12:17:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-05 12:17:41 +0100 |
commit | ed54bc3342aa23653c1363e1445a6037c6345fe8 (patch) | |
tree | 1e44774cebc0517446f2a0c9f68c169126695826 | |
parent | d028fa0a8e015e636c6566b1160276d232369e86 (diff) | |
parent | 5d06b66acb531ee7405a8563664b94cb57828938 (diff) |
Merge pull request #70 from defencedigital/postgres-migration
Fix path to wsgi file
-rwxr-xr-x | docker-entrypoint.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh index 93c5459..8782211 100755 --- a/docker-entrypoint.sh +++ b/docker-entrypoint.sh @@ -3,4 +3,4 @@ cd /app python manage.py migrate python manage createsuperuser --noinput python manage.py collectstatic --noinput -exec gunicorn --bind ':8080' --workers 3 config.wsgi:application +exec gunicorn --bind ':8080' --workers 3 ded.wsgi:application |