From 70327ca42c805f673ac9fb82934d8563aeb68aa8 Mon Sep 17 00:00:00 2001 From: Irfan Faizullabhoy Date: Wed, 7 Nov 2018 21:28:04 -0800 Subject: [PATCH] Docker Demo, Port Change (#6289) If you follow the documentation, the current docker instructions return an error when trying to connect via localhost. This seems to be due to the fact that it's running on port 8080, but forwarding port 8088. I suppose the cleaner solution is to do this, as opposed to changing both the compose file and the instructions... Hope this helps!! --- contrib/docker/docker-init.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/docker/docker-init.sh b/contrib/docker/docker-init.sh index 6ba5ca715..f50046ba9 100644 --- a/contrib/docker/docker-init.sh +++ b/contrib/docker/docker-init.sh @@ -21,4 +21,4 @@ cd superset/assets && npm run build && cd ../../ superset worker & # Start the dev web server -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