Skip to content

Commit

Permalink
Update docker-entrypoint.sh (#6346)
Browse files Browse the repository at this point in the history
Previously in the issue #6289 change the port for docker, but the port must be changed also in the entrypoint for docker
  • Loading branch information
brayanarrieta authored and mistercrunch committed Nov 9, 2018
1 parent 62dcce8 commit 04865f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/docker/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 04865f0

Please sign in to comment.