diff options
author | Matthew Lemon <y@yulqen.org> | 2024-09-12 19:51:06 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-09-12 19:51:06 +0100 |
commit | fc8383c528c47e6914557767be5723670c74008f (patch) | |
tree | b6bc60348f58ad5b35657f1ecf50fe0826c24796 /docker-entrypoint.sh | |
parent | ae414c59441bc985e3f8801f03e810443bc36253 (diff) |
Fixes Docker files
Diffstat (limited to 'docker-entrypoint.sh')
-rw-r--r-- | docker-entrypoint.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh index 5e8164c..63bacb2 100644 --- a/docker-entrypoint.sh +++ b/docker-entrypoint.sh @@ -2,4 +2,4 @@ cd /app python manage.py migrate python manage.py collectstatic --noinput -exec gunicorn --bind ':8080' --worker-tmp-dir /dev/shm --workers 3 config.wsgi:application +exec gunicorn --bind ':3000' --worker-tmp-dir /dev/shm --workers 3 config.wsgi:application |