gunicorn --bind instead of gunicorn -b

This commit is contained in:
Nikita P. Shupeyko 2018-05-14 10:20:27 +03:00
parent 4bcd4c3343
commit 091a3b6d0f

View File

@ -6,4 +6,4 @@ set -o nounset
python /app/manage.py collectstatic --noinput
/usr/local/bin/gunicorn config.wsgi -b 0.0.0.0:5000 --chdir=/app
/usr/local/bin/gunicorn config.wsgi --bind 0.0.0.0:5000 --chdir=/app