diff options
author | Matthew Lemon <y@yulqen.org> | 2024-06-05 12:16:50 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-06-05 12:16:50 +0100 |
commit | 5d06b66acb531ee7405a8563664b94cb57828938 (patch) | |
tree | 1e44774cebc0517446f2a0c9f68c169126695826 | |
parent | d028fa0a8e015e636c6566b1160276d232369e86 (diff) |
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 |