2021-05-09 22:07:17 +02:00
|
|
|
version: "3.8"
|
|
|
|
|
|
|
|
services:
|
|
|
|
db:
|
|
|
|
build: ./mattermost-docker/db
|
2021-06-23 22:52:59 +02:00
|
|
|
image: mm_db:5.35.4
|
2021-05-09 22:07:17 +02:00
|
|
|
read_only: true
|
|
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
|
|
- ${DATA_PATH}/db/var/lib/postgresql/data:/var/lib/postgresql/data
|
|
|
|
- ${DATA_PATH}/db/.pgpass:/root/.pgpass
|
|
|
|
- /etc/localtime:/etc/localtime:ro
|
2021-05-23 18:14:53 +02:00
|
|
|
env_file: secrets/db.secrets
|
2021-05-09 22:07:17 +02:00
|
|
|
|
|
|
|
app:
|
|
|
|
build:
|
|
|
|
context: ./mattermost-docker/app
|
|
|
|
args:
|
|
|
|
- edition=team
|
2021-06-23 22:52:59 +02:00
|
|
|
image: mm_app:5.35.4
|
2021-05-09 22:07:17 +02:00
|
|
|
depends_on:
|
|
|
|
- db
|
|
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
|
|
- default
|
|
|
|
- proxy
|
|
|
|
volumes:
|
|
|
|
- ${DATA_PATH}/app/mattermost/config:/mattermost/config:rw
|
|
|
|
- ${DATA_PATH}/app/mattermost/data:/mattermost/data:rw
|
|
|
|
- ${DATA_PATH}/app/mattermost/logs:/mattermost/logs:rw
|
|
|
|
- ${DATA_PATH}/app/mattermost/plugins:/mattermost/plugins:rw
|
|
|
|
- ${DATA_PATH}/app/mattermost/client-plugins:/mattermost/client/plugins:rw
|
|
|
|
- /etc/localtime:/etc/localtime:ro
|
2021-05-23 18:14:53 +02:00
|
|
|
env_file: secrets/app.secrets
|
2021-05-09 22:07:17 +02:00
|
|
|
labels:
|
|
|
|
- "traefik.enable=true"
|
|
|
|
- "traefik.docker.network=proxy"
|
|
|
|
- "traefik.http.services.mm-web-svc.loadbalancer.server.port=8000"
|
|
|
|
- "traefik.http.routers.mm-https.service=mm-web-svc"
|
|
|
|
- "traefik.http.middlewares.mm-redirect-websecure.redirectscheme.scheme=https"
|
|
|
|
- "traefik.http.routers.mm-http.middlewares=mm-redirect-websecure"
|
|
|
|
- "traefik.http.routers.mm-http.rule=Host(`${CN}`)"
|
|
|
|
- "traefik.http.routers.mm-http.entrypoints=web"
|
|
|
|
- "traefik.http.routers.mm-https.rule=Host(`${CN}`)"
|
|
|
|
- "traefik.http.routers.mm-https.entrypoints=websecure"
|
|
|
|
- "traefik.http.routers.mm-https.tls=true"
|
|
|
|
- "traefik.http.routers.mm-https.tls.certresolver=myhttpchallenge"
|
|
|
|
|
|
|
|
networks:
|
|
|
|
proxy:
|
|
|
|
external: true
|