From a9a8d66bcdf26fcd1d3cc38af1524eb1fbac9047 Mon Sep 17 00:00:00 2001 From: John Morrison Date: Fri, 31 Aug 2018 16:12:15 -0700 Subject: [PATCH] [docker-entry-point.sh] add missing backslash line continuation (#133) --- docker-entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ;;