1
0
mirror of https://github.com/Mailu/Mailu.git synced 2024-12-12 10:45:38 +02:00

Make gunicorn bind to port 80 of any available protocol

This commit is contained in:
Tim Möhlmann 2018-08-26 21:11:48 +03:00
parent ac62f26dfd
commit fe7e32dc82
No known key found for this signature in database
GPG Key ID: AFABC30066A39335

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