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!!
This commit is contained in:
Irfan Faizullabhoy 2018-11-07 21:28:04 -08:00 committed by Maxime Beauchemin
parent ede5c710ed
commit 70327ca42c
1 changed files with 1 additions and 1 deletions

View File

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