summaryrefslogtreecommitdiffstats
path: root/docker-entrypoint.sh
diff options
context:
space:
mode:
Diffstat (limited to 'docker-entrypoint.sh')
-rwxr-xr-xdocker-entrypoint.sh2
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