Metabase - Business intelligence and analytics
Everything you need to deploy Metabase 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 Metabase up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Metabase with:
blastdock init metabase
Interactive mode:
blastdock init metabase -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 Metabase installation with these configuration options.
Web interface port
Database password
Complete Docker Compose configuration for Metabase deployment.
version: '3.8'
services:
postgres:
image: postgres:13
container_name: {{ project_name }}_postgres
restart: unless-stopped
environment:
0: POSTGRES_USER=metabase
1: POSTGRES_PASSWORD={{ db_password }}
2: POSTGRES_DB=metabase
volumes:
- /var/lib/postgresql/data
networks:
- metabase_network
metabase:
image: metabase/metabase:latest
container_name: {{ project_name }}_metabase
restart: unless-stopped
depends_on:
- postgres
ports:
- "3000"
environment:
0: MB_DB_TYPE=postgres
1: MB_DB_DBNAME=metabase
2: MB_DB_PORT=5432
3: MB_DB_USER=metabase
4: MB_DB_PASS={{ db_password }}
5: MB_DB_HOST=postgres
networks:
- metabase_network
volumes:
postgres_data:
driver: local
networks:
metabase_network:
driver: bridge