Give your team the ability to answer their own questions without needing to write a single line of code. This open-source business intelligence tool connects to your databases in minutes, allowing anyone to explore data, create visualizations, and build interactive dashboards. Query your data using a simple graphical interface or even plain English with AI-backed tools, eliminating the need for constant ad-hoc report requests.
Key capabilities include:
services:
metabase:
image: metabase/metabase:latest
container_name: metabase
ports:
- "3000:3000"
environment:
MB_DB_TYPE: postgres
MB_DB_DBNAME: metabase
MB_DB_PORT: 5432
MB_DB_USER: metabase
MB_DB_PASS: ${MB_DB_PASS}
MB_DB_HOST: postgres
MB_ENCRYPTION_SECRET_KEY: ${MB_ENCRYPTION_SECRET_KEY}
depends_on:
- postgres
restart: unless-stopped
postgres:
image: postgres:15-alpine
container_name: metabase_postgres
environment:
POSTGRES_DB: metabase
POSTGRES_USER: metabase
POSTGRES_PASSWORD: ${MB_DB_PASS}
volumes:
- ./data/postgres:/var/lib/postgresql/data
restart: unless-stoppedMB_DB_PASS=your_secure_db_password
MB_ENCRYPTION_SECRET_KEY=your_random_secret_string_for_encryptionAuto-fetched 1 minute ago
Auto-fetched 1 minute ago