diff options
author | Matthew Lemon <y@yulqen.org> | 2024-06-05 15:54:59 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-06-05 15:54:59 +0100 |
commit | bdabf151350ac2ed5e692538b5089d826de9f67f (patch) | |
tree | c710d317486e80b537272bcb2440ed93cbf7b5f9 | |
parent | e4fc7c71cdbe173f79416cd7919aa3b35e7673ee (diff) |
Change port in entrypoint script
-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 b2b3808..6c3efca 100755 --- a/docker-entrypoint.sh +++ b/docker-entrypoint.sh @@ -12,4 +12,4 @@ echo "Attempting to create superuser..." #python manage.py collectstatic --noinput # Start Gunicorn -exec gunicorn --bind ':8080' --workers 3 ded.wsgi:application +exec gunicorn --bind ':8000' --workers 3 ded.wsgi:application |