27 lines
855 B
Bash
27 lines
855 B
Bash
# Mattermost Container Einstellungen
|
|
MM_NAME=mattermost-server
|
|
MM_IMAGE=mattermost/mattermost-team-edition:latest
|
|
MM_URL=http://localhost:8065
|
|
|
|
# Admin Account (Initiales Setup)
|
|
MM_ADMIN_USERNAME=admin
|
|
MM_ADMIN_PASSWORD=change_me_please
|
|
MM_ADMIN_EMAIL=admin@example.com
|
|
|
|
# Datenbank Einstellungen
|
|
MM_POSTGRES_USER=mmuser
|
|
MM_POSTGRES_PASSWORD=mmuser_password
|
|
MM_POSTGRES_DB=mattermost
|
|
|
|
# Pfade für Volumes (lokale Verzeichnisse)
|
|
MM_VOLUME_DATA=./volumes/app/data
|
|
MM_VOLUME_CONFIG=./volumes/app/config
|
|
MM_VOLUME_CLIENT_PLUGINS=./volumes/app/client/plugins
|
|
MM_VOLUME_PLUGINS=./volumes/app/plugins
|
|
MM_VOLUME_BLEVE_INDEXES=./volumes/app/bleveindexes
|
|
MM_VOLUME_LOGS=./volumes/app/logs
|
|
MM_VOLUME_POSTGRES=./volumes/db/data/
|
|
|
|
# Netzwerk / Hosts
|
|
# Format: "hostname:ip" - z.B. "host.docker.internal:host-gateway"
|
|
MM_EXTERNAL_HOST=host.docker.internal:host-gateway |