Favicon of Metabase

Metabase

Enable anyone to explore data with no-code tools and AI. Create dashboards, ask questions in natural language, and embed analytics into your application.

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:

  • Self-Serve Analytics: An intuitive no-code query builder lets non-technical users drill down into charts and discover insights on their own.
  • Embedded Reporting: Add powerful, customer-facing analytics directly into your own application using simple iframes or a flexible React SDK.
  • Data Governance: Create reusable semantic models and define trusted metrics to ensure everyone works from a consistent, accurate foundation.
  • Enterprise Ready: Connect to over 20 data sources and manage access with enterprise-grade security features like SSO and multi-tenant data segregation.

Directory Structure

metabase
data
.env
docker-compose.yml

docker-compose.yml

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-stopped

.env

MB_DB_PASS=your_secure_db_password
MB_ENCRYPTION_SECRET_KEY=your_random_secret_string_for_encryption
Categories:

Share:

Ad
Favicon

 

  
 

Similar to Metabase

Favicon

 

  
  
Favicon

 

  
  
Favicon