diff options
author | kaiyou <pierre@jaury.eu> | 2018-02-08 19:46:11 +0100 |
---|---|---|
committer | kaiyou <pierre@jaury.eu> | 2018-02-08 19:46:11 +0100 |
commit | 63fd148724399d52f3435b1c172435d7cabcde4c (patch) | |
tree | 89174187d3c6edbe6757bedd4835b3c76ea05f42 /contrib/docker/docker-compose.yml | |
parent | Support loading application service files from /data/appservices/ (diff) | |
download | synapse-63fd148724399d52f3435b1c172435d7cabcde4c.tar.xz |
Make it clear that two modes are avaiable in the documentation, improve the compose file
Diffstat (limited to '')
-rw-r--r-- | contrib/docker/docker-compose.yml | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/contrib/docker/docker-compose.yml b/contrib/docker/docker-compose.yml index 3fb156db47..b07984ea34 100644 --- a/contrib/docker/docker-compose.yml +++ b/contrib/docker/docker-compose.yml @@ -6,7 +6,7 @@ version: '3' services: synapse: - image: matrixdotorg/synapse:latest + image: docker.io/matrixdotorg/synapse:latest # Since snyapse does not retry to connect to the database, restart upon # failure restart: unless-stopped @@ -15,7 +15,12 @@ services: - SYNAPSE_SERVER_NAME=my.matrix.host - SYNAPSE_ENABLE_REGISTRATION=yes volumes: + # You may either store all the files in a local folder - ./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 # In order to expose Synapse, remove one of the following, you might for @@ -29,10 +34,13 @@ services: - traefik.port=8448 db: - image: postgres:latest + image: postgres:10-alpine # 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 |