From 04865f02806c37c1fc2b7a2d597902d777df233e Mon Sep 17 00:00:00 2001 From: Brayan Arrieta Date: Fri, 9 Nov 2018 01:08:05 -0600 Subject: [PATCH] Update docker-entrypoint.sh (#6346) Previously in the issue #6289 change the port for docker, but the port must be changed also in the entrypoint for docker --- contrib/docker/docker-entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/docker/docker-entrypoint.sh b/contrib/docker/docker-entrypoint.sh index aff2bb3f5abad..3e1de5ec8db59 100644 --- a/contrib/docker/docker-entrypoint.sh +++ b/contrib/docker/docker-entrypoint.sh @@ -4,7 +4,7 @@ set -ex if [ "$#" -ne 0 ]; then exec "$@" elif [ "$SUPERSET_ENV" = "local" ]; then - flask run -p 8080 --with-threads --reload --debugger --host=0.0.0.0 + flask run -p 8088 --with-threads --reload --debugger --host=0.0.0.0 elif [ "$SUPERSET_ENV" = "production" ]; then superset runserver -a 0.0.0.0 -w $((2 * $(getconf _NPROCESSORS_ONLN) + 1)) else