2026-05-19 13:03:34 +02:00
|
|
|
services:
|
|
|
|
|
superset:
|
|
|
|
|
build: .
|
|
|
|
|
container_name: superset
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
ports:
|
|
|
|
|
- "8088:8088"
|
2026-05-19 22:28:01 +02:00
|
|
|
env_file:
|
|
|
|
|
- ../../.env
|
2026-05-19 13:03:34 +02:00
|
|
|
environment:
|
2026-05-19 22:28:01 +02:00
|
|
|
- SUPERSET_SECRET_KEY=${SUPERSET_SECRET_KEY:-change-me}
|
2026-05-19 13:03:34 +02:00
|
|
|
- SUPERSET_LOAD_EXAMPLES=no
|
|
|
|
|
volumes:
|
|
|
|
|
- ./superset_config.py:/app/pythonpath/superset_config.py
|
|
|
|
|
- superset_home:/app/superset_home
|
|
|
|
|
depends_on:
|
|
|
|
|
- redis
|
|
|
|
|
|
|
|
|
|
redis:
|
|
|
|
|
image: redis:7
|
|
|
|
|
container_name: superset_redis
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
ports:
|
|
|
|
|
- "6379:6379"
|
|
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
|
superset_home:
|