mirror of
https://github.com/Thumbscrew/matrix-homeserver-docker-compose.git
synced 2025-04-12 18:23:42 +00:00
153 lines
4.0 KiB
YAML
153 lines
4.0 KiB
YAML
secrets:
|
|
postgres_password:
|
|
file: ./postgres_password.txt
|
|
|
|
networks:
|
|
frontend:
|
|
external: ${DOCKER_PROXY_EXT-true}
|
|
name: ${DOCKER_PROXY_NETWORK}
|
|
backend:
|
|
|
|
services:
|
|
postgres:
|
|
image: postgres:${POSTGRESQL_IMAGE_TAG}
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ${VOLUME_PATH}/var/lib/postgresql/data:/var/lib/postgresql/data:rw
|
|
secrets:
|
|
- postgres_password
|
|
networks:
|
|
- backend
|
|
environment:
|
|
POSTGRES_DB: synapse
|
|
POSTGRES_USER: synapse_user
|
|
POSTGRES_PASSWORD_FILE: /run/secrets/postgres_password
|
|
POSTGRES_INITDB_ARGS: --encoding=UTF8 --locale=C
|
|
|
|
redis:
|
|
image: redis:${REDIS_IMAGE_TAG}
|
|
restart: unless-stopped
|
|
networks:
|
|
- backend
|
|
|
|
synapse:
|
|
image: matrixdotorg/synapse:${SYNAPSE_IMAGE_TAG}
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ${VOLUME_PATH}/data:/data:rw
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-size: "100M"
|
|
max-file: "3"
|
|
mem_limit: ${SYNAPSE_MEM_LIMIT:-2g}
|
|
ports:
|
|
- ${SYNAPSE_PORT}:8008
|
|
networks:
|
|
- frontend
|
|
- backend
|
|
environment:
|
|
SYNAPSE_CONFIG_DIR: /data
|
|
SYNAPSE_CONFIG_PATH: /data/${CONFIG_FILE_NAME}
|
|
UID: ${UID}
|
|
GID: ${GID}
|
|
TZ: ${TZ}
|
|
depends_on:
|
|
- postgres
|
|
|
|
synapse-generic-worker-1:
|
|
image: matrixdotorg/synapse:${SYNAPSE_IMAGE_TAG}
|
|
restart: unless-stopped
|
|
entrypoint: ["/start.py", "run", "--config-path=/data/${CONFIG_FILE_NAME}", "--config-path=/data/workers/synapse-generic-worker-1.yaml"]
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "curl -fSs http://localhost:8081/health || exit 1"]
|
|
start_period: "5s"
|
|
interval: "15s"
|
|
timeout: "5s"
|
|
volumes:
|
|
- ${VOLUME_PATH}/data:/data:rw
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-size: "100M"
|
|
max-file: "3"
|
|
mem_limit: ${WORKER_MEM_LIMIT:-512m}
|
|
networks:
|
|
- frontend
|
|
- backend
|
|
environment:
|
|
SYNAPSE_CONFIG_DIR: /data
|
|
SYNAPSE_WORKER: synapse.app.generic_worker
|
|
depends_on:
|
|
- synapse
|
|
|
|
synapse-generic-worker-2:
|
|
image: matrixdotorg/synapse:${SYNAPSE_IMAGE_TAG}
|
|
restart: unless-stopped
|
|
entrypoint: ["/start.py", "run", "--config-path=/data/${CONFIG_FILE_NAME}", "--config-path=/data/workers/synapse-generic-worker-2.yaml"]
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "curl -fSs http://localhost:8081/health || exit 1"]
|
|
start_period: "5s"
|
|
interval: "15s"
|
|
timeout: "5s"
|
|
volumes:
|
|
- ${VOLUME_PATH}/data:/data:rw
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-size: "100M"
|
|
max-file: "3"
|
|
mem_limit: ${WORKER_MEM_LIMIT:-512m}
|
|
networks:
|
|
- frontend
|
|
- backend
|
|
environment:
|
|
SYNAPSE_CONFIG_DIR: /data
|
|
SYNAPSE_WORKER: synapse.app.generic_worker
|
|
depends_on:
|
|
- synapse
|
|
|
|
synapse-federation-sender-1:
|
|
image: matrixdotorg/synapse:${SYNAPSE_IMAGE_TAG}
|
|
restart: unless-stopped
|
|
entrypoint: ["/start.py", "run", "--config-path=/data/${CONFIG_FILE_NAME}", "--config-path=/data/workers/synapse-federation-sender-1.yaml"]
|
|
healthcheck:
|
|
disable: true
|
|
volumes:
|
|
- ${VOLUME_PATH}/data:/data:rw
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-size: "100M"
|
|
max-file: "3"
|
|
mem_limit: ${WORKER_MEM_LIMIT:-512m}
|
|
networks:
|
|
- backend
|
|
environment:
|
|
SYNAPSE_CONFIG_DIR: /data
|
|
SYNAPSE_WORKER: synapse.app.federation_sender
|
|
depends_on:
|
|
- synapse
|
|
|
|
synapse-federation-sender-2:
|
|
image: matrixdotorg/synapse:${SYNAPSE_IMAGE_TAG}
|
|
restart: unless-stopped
|
|
entrypoint: ["/start.py", "run", "--config-path=/data/${CONFIG_FILE_NAME}", "--config-path=/data/workers/synapse-federation-sender-2.yaml"]
|
|
healthcheck:
|
|
disable: true
|
|
volumes:
|
|
- ${VOLUME_PATH}/data:/data:rw
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-size: "100M"
|
|
max-file: "3"
|
|
mem_limit: ${WORKER_MEM_LIMIT:-512m}
|
|
networks:
|
|
- backend
|
|
environment:
|
|
SYNAPSE_CONFIG_DIR: /data
|
|
SYNAPSE_WORKER: synapse.app.federation_sender
|
|
depends_on:
|
|
- synapse
|