metabase
This commit is contained in:
27
compose.yaml
27
compose.yaml
@@ -41,6 +41,33 @@ services:
|
||||
superset run -h 0.0.0.0 -p 8088 --with-threads --reload --debugger
|
||||
"
|
||||
|
||||
metabase:
|
||||
image: metabase/metabase:v0.56.5.5
|
||||
depends_on:
|
||||
database:
|
||||
condition: service_healthy
|
||||
volumes:
|
||||
- /dev/urandom:/dev/random:ro
|
||||
ports:
|
||||
- "3000:3000"
|
||||
environment:
|
||||
MB_DB_TYPE: postgres
|
||||
MB_DB_HOST: ${MB_DB_HOST:-database}
|
||||
MB_DB_PORT: 5432
|
||||
MB_DB_USER: metabase_user
|
||||
MB_DB_PASS: ${DB_ROOT_PASSWORD:-supermotdepasse}
|
||||
MB_DB_DBNAME: metabase
|
||||
MB_SITE_LOCALE: fr
|
||||
MB_ADMIN_EMAIL: etudiant@univ-lorraine.fr
|
||||
MB_ANON_TRACKING_ENABLED: false
|
||||
MB_CHECK_FOR_UPDATES: false
|
||||
MB_NO_SURVEYS: yes
|
||||
MB_START_OF_WEEK: monday
|
||||
MB_CUSTOM_FORMATTING: '{"type/Temporal":{"time_style":"HH:mm","date_style":"D MMMM, YYYY","date_abbreviate":true},"type/Currency":{"currency":"EUR"},"type/Number":{"number_separators":", "}}'
|
||||
MB_EMAIL_SMTP_HOST: mailpit
|
||||
MB_EMAIL_SMTP_PORT: 1025
|
||||
MB_EMAIL_FROM_ADDRESS: metabase@univ-lorraine.fr
|
||||
|
||||
# CouchDB
|
||||
# Single-node document database
|
||||
# https://couchdb.apache.org/
|
||||
|
||||
Reference in New Issue
Block a user