From 091a3b6d0f36669f1d12aa08d5f628fcb4011973 Mon Sep 17 00:00:00 2001 From: "Nikita P. Shupeyko" Date: Mon, 14 May 2018 10:20:27 +0300 Subject: [PATCH] `gunicorn --bind` instead of `gunicorn -b` --- .../compose/production/django/gunicorn.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/compose/production/django/gunicorn.sh b/{{cookiecutter.project_slug}}/compose/production/django/gunicorn.sh index 39679f28..0ad39dfa 100644 --- a/{{cookiecutter.project_slug}}/compose/production/django/gunicorn.sh +++ b/{{cookiecutter.project_slug}}/compose/production/django/gunicorn.sh @@ -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