diff options
author | Yulqen <246857+yulqen@users.noreply.github.com> | 2024-06-05 15:55:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-05 15:55:50 +0100 |
commit | eeea8e9b4d129f12e5d9c211a267da5db9d09299 (patch) | |
tree | c710d317486e80b537272bcb2440ed93cbf7b5f9 | |
parent | e4fc7c71cdbe173f79416cd7919aa3b35e7673ee (diff) | |
parent | bdabf151350ac2ed5e692538b5089d826de9f67f (diff) |
Merge pull request #79 from defencedigital/postgres-migration
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 |