23 lines
827 B
YAML
23 lines
827 B
YAML
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
|