docker-stacks/synapse/docker-compose.yml

35 lines
903 B
YAML
Raw Normal View History

2020-08-05 17:50:51 +00:00
version: '3.7'
services:
synapse:
# https://hub.docker.com/r/matrixdotorg/synapse
# https://github.com/matrix-org/synapse/tree/master/docker
image: "matrixdotorg/synapse:${IMAGE_VERSION:-latest}"
container_name: synapse
2022-03-19 00:09:50 +00:00
hostname: synapse
extra_hosts:
- 'host.docker.internal:host-gateway'
2020-08-05 20:17:36 +00:00
ports:
- "${INTERFACE_EXT:-127.0.0.1}:${HTTP_PORT_EXT:-8008}:${HTTP_PORT_INT:-8008}/tcp"
2020-08-05 17:50:51 +00:00
volumes:
- "${DATA_PATH:-./data}:/data"
# SSL certs directory
- "${SSL_PATH:-./ssl}:/ssl:ro"
# Bridges
# Telegram
- "../mautrix-telegram/data:/bridges/mautrix-telegram/data:ro"
2020-08-05 17:50:51 +00:00
env_file: .env
networks:
- default
- matrix
2020-08-05 17:50:51 +00:00
restart: unless-stopped
logging:
driver: "json-file"
options:
max-size: "${LOG_MAX_SIZE:-5m}"
max-file: "${LOG_MAX_FILE:-5}"
networks:
matrix:
external: true