Apache Superset - Data visualization and exploration platform
Everything you need to deploy Superset with BlastDock
One command deployment
Production-ready security
Customizable settings
Ready to scale up
blastdock init
Initialize new project
blastdock deploy
Deploy the application
blastdock status
Check deployment status
blastdock logs
View application logs
Get Superset up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Superset with:
blastdock init superset
Interactive mode:
blastdock init superset -i
blastdock templates
List available templates
blastdock status project
Check deployment status
blastdock logs project
View application logs
blastdock stop project
Stop deployment
Customize your Superset installation with these configuration options.
Web interface port
Admin username
Admin password
Admin email
Database password
Complete Docker Compose configuration for Superset deployment.
version: '3.8'
services:
redis:
image: redis:latest
container_name: {{ project_name }}_redis
restart: unless-stopped
volumes:
- /data
networks:
- superset_network
db:
image: postgres:13
container_name: {{ project_name }}_db
restart: unless-stopped
environment:
0: POSTGRES_USER=superset
1: POSTGRES_PASSWORD={{ db_password }}
2: POSTGRES_DB=superset
volumes:
- /var/lib/postgresql/data
networks:
- superset_network
superset:
image: apache/superset:latest
container_name: {{ project_name }}_superset
restart: unless-stopped
depends_on:
- db
- redis
ports:
- "8088"
environment:
0: SUPERSET_SECRET_KEY=your_secret_key_here
1: ADMIN_USERNAME={{ admin_username }}
2: ADMIN_FIRST_NAME=Admin
3: ADMIN_LAST_NAME=User
4: ADMIN_EMAIL={{ admin_email }}
5: ADMIN_PASSWORD={{ admin_password }}
- SQLALCHEMY_DATABASE_URI=postgresql+psycopg2: //superset:{{ db_password }}@db:5432/superset
6: REDIS_HOST=redis
volumes:
- /app/superset_home
networks:
- superset_network
volumes:
redis_data:
driver: local
db_data:
driver: local
superset_home:
driver: local
networks:
superset_network:
driver: bridge