Apache Superset

This commit is contained in:
2025-09-16 11:53:04 +02:00
parent 292d59d393
commit ec27dedaf7
3 changed files with 13 additions and 4 deletions

View File

@@ -18,13 +18,14 @@ services:
depends_on:
- database
environment:
SUPERSET_CONFIG_PATH: /app/pythonpath/superset_config.py
SUPERSET_SECRET_KEY: ${SUPERSET_SECRET:-!ChangeMe!}
SUPERSET_LOAD_EXAMPLES: no
SUPERSET_DATABASE_URI: postgresql+psycopg2://sql:${POSTGRES_PASSWORD:-!ChangeMe!}@database:5432/superset
ports:
- "8088:8088"
volumes:
- superset_home:/app/superset_home
- ./superset_config.py:/app/pythonpath/superset_config.py
command: >
sh -c "
superset db upgrade &&
@@ -32,8 +33,7 @@ services:
superset init &&
superset run -h 0.0.0.0 -p 8088 --with-threads --reload --debugger
"
volumes:
database_data:
superset_home: