MirrorNest
← Tüm kılavuzlar

Metabase

Metabase is a business intelligence tool for building dashboards and ad-hoc charts over your data without writing SQL, distributed as an official Docker image.

Hedef: Any Docker hostAnalyticsResmi ana sayfa ↗Resmi belgeler ↗
Bu kılavuz, yukarıda bağlantısı verilen Metabase kendi resmi belgelerinden derlenmiştir — dağıtım ve proje sürümleri zamanla değiştiğinden, bu komutları bir üretim sunucusunda çalıştırmadan önce tam paket/sürüm adlarını her zaman orada kontrol edin.
  1. 1Quick start (embedded database)

    docker pull metabase/metabase:latest
    docker run -d -p 3000:3000 --name metabase metabase/metabase

    This uses Metabase's bundled H2 database, which lives inside the container — removing the container loses your questions, dashboards, and collections.

  2. 2Production setup with PostgreSQL

    Point Metabase at your own PostgreSQL instance to store its application data durably.

    docker run -d -p 3000:3000 \ -e "MB_DB_TYPE=postgres" \ -e "MB_DB_DBNAME=metabaseappdb" \ -e "MB_DB_PORT=5432" \ -e "MB_DB_USER=name" \ -e "MB_DB_PASS=password" \ -e "MB_DB_HOST=my-database-host" \ --name metabase metabase/metabase
  3. 3Check startup progress

    docker logs -f metabase
  4. 4Complete the setup wizard

    Open http://localhost:3000 and follow the setup wizard to create your admin account and connect the data source(s) you want to explore.