38 lines
1.2 KiB
YAML
38 lines
1.2 KiB
YAML
# documentation: https://www.metabase.com
|
|
# slogan: Fast analytics with the friendly UX and integrated tooling to let your company explore data on their own.
|
|
# tags: analytics,bi,business,intelligence
|
|
# logo: svgs/metabase.svg
|
|
# port: 3000
|
|
|
|
services:
|
|
metabase:
|
|
image: metabase/metabase:latest
|
|
volumes:
|
|
- /dev/urandom:/dev/random:ro
|
|
environment:
|
|
- SERVICE_FQDN_METABASE_3000
|
|
- MB_DB_TYPE=postgres
|
|
- MB_DB_HOST=postgresql
|
|
- MB_DB_PORT=5432
|
|
- MB_DB_DBNAME=${POSTGRESQL_DATABASE:-metabase}
|
|
- MB_DB_USER=$SERVICE_USER_POSTGRESQL
|
|
- MB_DB_PASS=$SERVICE_PASSWORD_POSTGRESQL
|
|
healthcheck:
|
|
test: curl --fail -I http://localhost:3000/api/health || exit 1
|
|
interval: 5s
|
|
timeout: 20s
|
|
retries: 10
|
|
postgresql:
|
|
image: postgres:16-alpine
|
|
volumes:
|
|
- metabase-postgresql-data:/var/lib/postgresql/data
|
|
environment:
|
|
- POSTGRES_USER=${SERVICE_USER_POSTGRESQL}
|
|
- POSTGRES_PASSWORD=${SERVICE_PASSWORD_POSTGRESQL}
|
|
- POSTGRES_DB=${POSTGRESQL_DATABASE:-metabase}
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}"]
|
|
interval: 5s
|
|
timeout: 20s
|
|
retries: 10
|