2024-12-12 22:38:49 +09:00
|
|
|
name: daraz-tek
|
|
|
|
services:
|
|
|
|
mattermost:
|
2025-01-10 03:58:57 +00:00
|
|
|
image: mattermost/mattermost-team-edition:10.4@sha256:23967dd2d46c77311eea2bd64016a328f8a13cba07eb64c163856e880bc47762
|
2024-12-12 22:38:49 +09:00
|
|
|
restart: unless-stopped
|
|
|
|
security_opt:
|
|
|
|
- no-new-privileges:true
|
|
|
|
pids_limit: 200
|
|
|
|
tmpfs:
|
|
|
|
- /tmp
|
|
|
|
ports:
|
|
|
|
- "8065:8065"
|
|
|
|
volumes:
|
|
|
|
- mattermost_data:/mattermost
|
|
|
|
environment:
|
|
|
|
TZ: Asia/Tokyo
|
|
|
|
MM_LOCALIZATIONSETTINGS_DEFAULTCLIENTLOCALE: ja
|
|
|
|
MM_BLEVESETTINGS_INDEXDIR: /mattermost/bleve-indexes
|
|
|
|
MM_SERVICESETTINGS_SITEURL: https://daraz-tek.beta.fogtype.com
|
|
|
|
MM_SQLSETTINGS_DRIVERNAME: postgres
|
|
|
|
MM_SQLSETTINGS_DATASOURCE: postgres://postgres:${POSTGRES_PASSWORD:?}@postgres:5432/postgres?sslmode=disable&connect_timeout=10
|
|
|
|
MM_TEAMSETTINGS_MAXUSERSPERTEAM: "100"
|
|
|
|
depends_on:
|
|
|
|
- postgres
|
|
|
|
postgres:
|
2025-01-11 11:55:38 +00:00
|
|
|
image: postgres:17-alpine@sha256:0bcc5bbbb2aa9c9b4c6505845918c7eb55d783cf5c1f434fac33012579fb149d
|
2024-12-12 22:38:49 +09:00
|
|
|
restart: unless-stopped
|
|
|
|
security_opt:
|
|
|
|
- no-new-privileges:true
|
|
|
|
pids_limit: 100
|
|
|
|
read_only: true
|
|
|
|
tmpfs:
|
|
|
|
- /tmp
|
|
|
|
- /var/run/postgresql
|
|
|
|
volumes:
|
|
|
|
- postgres_data_v17:/var/lib/postgresql/data
|
|
|
|
environment:
|
|
|
|
- POSTGRES_PASSWORD
|
|
|
|
volumes:
|
|
|
|
mattermost_data:
|
|
|
|
postgres_data_v17:
|