diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh index 17f69ce..0e4c074 100755 --- a/docker-entrypoint.sh +++ b/docker-entrypoint.sh @@ -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 ;;