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