diff options
author | Matthew Lemon <y@yulqen.org> | 2024-06-05 14:13:55 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-06-05 14:13:55 +0100 |
commit | 3ad931be76733e30e2331a58f91ceb724457ece4 (patch) | |
tree | b758264467065bb92c0ba4f00296f0b53fddd2b4 /docker-entrypoint.sh | |
parent | 4988826cf1cb048082e297cf7b40c60f52c71094 (diff) |
remove --email from entrypoint
Diffstat (limited to '')
-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 35419b0..1cf95db 100755 --- a/docker-entrypoint.sh +++ b/docker-entrypoint.sh @@ -1,6 +1,6 @@ #!/bin/sh cd /app python manage.py migrate -python manage.py createsuperuser --noinput --email +python manage.py createsuperuser --noinput python manage.py collectstatic --noinput exec gunicorn --bind ':8080' --workers 3 ded.wsgi:application |