2
0
Fork 0

Make gunicorn listen on 0.0.0.0

This commit is contained in:
Luca 2022-04-13 10:24:30 +02:00
parent d4e795c07d
commit 400a0e7d12
1 changed files with 1 additions and 1 deletions

View File

@ -12,4 +12,4 @@ RUN python manage.py collectstatic
EXPOSE 8000 EXPOSE 8000
ENTRYPOINT ["gunicorn", "shiftregister.wsgi"] ENTRYPOINT ["gunicorn", "shiftregister.wsgi", "-b", "0.0.0.0:8000"]