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
This commit is contained in:
Brayan Arrieta 2018-11-09 01:08:05 -06:00 committed by Maxime Beauchemin
parent 62dcce890c
commit 04865f0280
1 changed files with 1 additions and 1 deletions

View File

@ -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