MatrixSynapse/contrib/docker/docker-compose.yml

48 lines
1.5 KiB
YAML
Raw Normal View History

2018-02-04 16:18:40 +01:00
# This compose file is compatible with Compose itself, it might need some
2018-02-04 12:55:20 +01:00
# adjustments to run properly with stack.
version: '3'
services:
synapse:
image: docker.io/matrixdotorg/synapse:latest
# Since snyapse does not retry to connect to the database, restart upon
# failure
restart: unless-stopped
2018-02-04 12:55:20 +01:00
# See the readme for a full documentation of the environment settings
environment:
- SYNAPSE_SERVER_NAME=my.matrix.host
- SYNAPSE_REPORT_STATS=no
- SYNAPSE_ENABLE_REGISTRATION=yes
2018-02-04 12:55:20 +01:00
volumes:
# You may either store all the files in a local folder
2018-02-04 12:55:20 +01:00
- ./files:/data
# .. or you may split this between different storage points
# - ./files:/data
# - /path/to/ssd:/data/uploads
# - /path/to/large_hdd:/data/media
depends_on:
- db
2018-02-04 16:18:40 +01:00
# In order to expose Synapse, remove one of the following, you might for
# instance expose the TLS port directly:
2018-02-04 12:55:20 +01:00
ports:
- 8448:8448/tcp
2018-02-04 16:18:40 +01:00
# ... or use a reverse proxy, here is an example for traefik:
2018-02-04 12:55:20 +01:00
labels:
- traefik.enable=true
- traefik.frontend.rule=Host:my.matrix.Host
- traefik.port=8448
db:
image: postgres:10-alpine
2018-02-04 12:55:20 +01:00
# Change that password, of course!
environment:
- POSTGRES_USER=matrix
- POSTGRES_PASSWORD=changeme
volumes:
# You may store the database tables in a local folder..
- ./schemas:/var/lib/postgresql/data
# .. or store them on some high performance storage for better results
# - /path/to/ssd/storage:/var/lib/postfesql/data