diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-08-25 01:02:16 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-08-25 01:02:16 +0200 |
commit | e37c1f9057ed986ac50b86463a4dbe6bf5d77f02 (patch) | |
tree | 5f5757bde3cf8a694a70bd11afdcdf9b87806db8 /cluster/prod/app/matrix/build/docker-compose.yml | |
parent | 3be2659aa19abfb7e676d33e9e7e1357c790a383 (diff) | |
download | nixcfg-e37c1f9057ed986ac50b86463a4dbe6bf5d77f02.tar.gz nixcfg-e37c1f9057ed986ac50b86463a4dbe6bf5d77f02.zip |
Deploy Matrix
Diffstat (limited to 'cluster/prod/app/matrix/build/docker-compose.yml')
-rw-r--r-- | cluster/prod/app/matrix/build/docker-compose.yml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/cluster/prod/app/matrix/build/docker-compose.yml b/cluster/prod/app/matrix/build/docker-compose.yml new file mode 100644 index 0000000..de56bdc --- /dev/null +++ b/cluster/prod/app/matrix/build/docker-compose.yml @@ -0,0 +1,23 @@ +version: '3.4' +services: + # Instant Messaging + riot: + build: + context: ./riotweb + args: + # https://github.com/vector-im/riot-web/releases + VERSION: 1.11.3 + image: superboum/amd64_riotweb:v31 + + synapse: + build: + context: ./matrix-synapse + args: + # https://github.com/matrix-org/synapse/releases + VERSION: 1.65.0 + # https://github.com/matrix-org/synapse-s3-storage-provider/commits/main + # Update with the latest commit on main each time you update the synapse version + # otherwise synapse may fail to launch due to incompatibility issues + # see this issue for an example: https://github.com/matrix-org/synapse-s3-storage-provider/issues/64 + S3_VERSION: ffd3fa477321608e57d27644197e721965e0e858 + image: superboum/amd64_synapse:v54 |