Wo finde ich das genau, ich habe das ganze in Docker mit einer docker-compose.yml Datei installiert.
version: '3.7'
services:
db:
image: postgres:15
restart: unless-stopped
environment:
POSTGRES_USER: mmuser
POSTGRES_PASSWORD: starkes-passwort
POSTGRES_DB: mattermost
volumes:
- db_data:/var/lib/postgresql/data
app:
image: mattermost/mattermost-team-edition:latest
restart: unless-stopped
ports:
- "8065:8065"
environment:
MM_DBTYPE: postgres
MM_SQLSETTINGS_DRIVERNAME: postgres
MM_SQLSETTINGS_DATASOURCE: postgres://mmuser:starkes-passwort@db:5432/mattermost?sslmode=disable
MM_SERVICESETTINGS_SITEURL: http://localhost:8065
depends_on:
- db
volumes:
- app_data:/mattermost/data
- config:/mattermost/config
- logs:/mattermost/logs
- plugins:/mattermost/plugins
- client_plugins:/mattermost/client/plugins