modified gunicorn bind

pull/2/head
mtyton 2023-05-18 17:54:31 +02:00
rodzic 67a98df3e5
commit 7919e46bfa
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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