fix(docker compose): replace port 8088 with 9000 (#32481)

This commit is contained in:
Giampaolo Capelli
2025-03-03 23:55:48 +01:00
committed by GitHub
parent ce367d6427
commit d7e0ee6ceb
2 changed files with 2 additions and 2 deletions

View File

@@ -176,7 +176,7 @@ services:
NPM_RUN_PRUNE: false
SCARF_ANALYTICS: "${SCARF_ANALYTICS:-}"
# configuring the dev-server to use the host.docker.internal to connect to the backend
superset: "http://host.docker.internal:8088"
superset: "http://superset:8088"
ports:
- "127.0.0.1:9000:9000" # exposing the dynamic webpack dev server
container_name: superset_node

View File

@@ -52,7 +52,7 @@ Note that:
[docker-compose.yml](https://github.com/apache/superset/blob/master/docker-compose.yml)
- The local repository is mounted within the services, meaning updating
the code on the host will be reflected in the docker images
- Superset is served at localhost:8088/
- Superset is served at localhost:9000/
- You can login with admin/admin
:::note