mirror of
https://github.com/kou029w/daraz-tek.beta.fogtype.com.git
synced 2025-01-18 08:05:10 +00:00
41 lines
1.2 KiB
YAML
41 lines
1.2 KiB
YAML
name: daraz-tek
|
|
services:
|
|
mattermost:
|
|
image: mattermost/mattermost-team-edition:10.4@sha256:23967dd2d46c77311eea2bd64016a328f8a13cba07eb64c163856e880bc47762
|
|
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:
|
|
image: postgres:17-alpine@sha256:0bcc5bbbb2aa9c9b4c6505845918c7eb55d783cf5c1f434fac33012579fb149d
|
|
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:
|