1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-10-30 23:37:43 +02:00

Merge pull request #580 from usrpro/fix-setup-binding

Fix binding in setup utility's gunicorn
This commit is contained in:
kaiyou
2018-09-16 19:57:53 +02:00
committed by GitHub

View File

@@ -15,4 +15,4 @@ RUN python setup.py https://github.com/mailu/mailu /data
EXPOSE 80/tcp
CMD gunicorn -w 4 -b 0.0.0.0:80 -b [::]:80 --access-logfile - --error-logfile - --preload main:app
CMD gunicorn -w 4 -b :80 --access-logfile - --error-logfile - --preload main:app