[docker-entry-point.sh] add missing backslash line continuation (#133)

pull/135/head
John Morrison 6 years ago committed by Vlad Filippov
parent 1935cad4ed
commit a9a8d66bcd

@ -5,8 +5,8 @@ case "$1" in
server)
export SYNCSERVER_SQLURI="${SYNCSERVER_SQLURI:-sqlite:///tmp/syncserver.db}"
exec gunicorn \
--bind ${HOST-0.0.0.0}:${PORT-5000}\
--forwarded-allow-ips="${SYNCSERVER_FORWARDED_ALLOW_IPS:-127.0.0.1,172.17.0.1}"
--bind ${HOST-0.0.0.0}:${PORT-5000} \
--forwarded-allow-ips="${SYNCSERVER_FORWARDED_ALLOW_IPS:-127.0.0.1,172.17.0.1}" \
syncserver.wsgi_app
;;

Loading…
Cancel
Save