From 7919e46bfa8329a2b13a8685b54b8c4a697249fd Mon Sep 17 00:00:00 2001 From: mtyton Date: Thu, 18 May 2023 17:54:31 +0200 Subject: [PATCH] modified gunicorn bind --- artel/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artel/Dockerfile b/artel/Dockerfile index a8b15d3..a8ed9a6 100644 --- a/artel/Dockerfile +++ b/artel/Dockerfile @@ -57,4 +57,4 @@ RUN python manage.py collectstatic --noinput --clear # PRACTICE. The database should be migrated manually or using the release # phase facilities of your hosting platform. This is used only so the # Wagtail instance can be started with a simple "docker run" command. -CMD set -xe; python manage.py migrate --noinput; gunicorn artel.wsgi:application +CMD set -xe; python manage.py migrate --noinput; gunicorn --bind=0.0.0.0:8000 artel.wsgi:application