This is an automated email from the ASF dual-hosted git repository.
maximebeauchemin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git
The following commit(s) were added to refs/heads/master by this push:
new 04865f0 Update docker-entrypoint.sh (#6346)
04865f0 is described below
commit 04865f02806c37c1fc2b7a2d597902d777df233e
Author: Brayan Arrieta <[email protected]>
AuthorDate: Fri Nov 9 01:08:05 2018 -0600
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 aff2bb3..3e1de5e 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