From 908f173a1fa6be9715cab728028cb6445364f491 Mon Sep 17 00:00:00 2001 From: j75689 Date: Wed, 18 Oct 2023 12:30:44 +0800 Subject: [PATCH] fix: remove socket --- docker-entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh index b2ec012d..78f5b4aa 100755 --- a/docker-entrypoint.sh +++ b/docker-entrypoint.sh @@ -11,4 +11,4 @@ echo "==> $(date +%H:%M:%S) ==> Migrating Django models..." python src/manage.py migrate --noinput echo "==> $(date +%H:%M:%S) ==> Running Gunicorn..." -exec gunicorn -c /app/src/config/gunicorn.py config.wsgi -b ${GUNICORN_BIND_SOCKET} -b 0.0.0.0:${GUNICORN_BIND_PORT} --chdir /app/src/ +exec gunicorn -c /app/src/config/gunicorn.py config.wsgi -b 0.0.0.0:${GUNICORN_BIND_PORT} --chdir /app/src/