Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .compose/examples/tom+fed+chat+admin.pgsql+ldap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ services:
db:

synapse:
image: matrixdotorg/synapse
image: matrixdotorg/synapse:v1.119.0
restart: unless-stopped
env_file:
- path: ../.env
Expand Down
2 changes: 1 addition & 1 deletion .compose/examples/tom+fed+chat+admin.sqlite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ services:
- auth

synapse:
image: matrixdotorg/synapse
image: matrixdotorg/synapse:v1.119.0
restart: unless-stopped
env_file:
- path: ../.env
Expand Down
2 changes: 1 addition & 1 deletion .compose/examples/tom+fed+chat.pgsql+ldap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ services:
db:

synapse:
image: matrixdotorg/synapse
image: matrixdotorg/synapse:v1.119.0
restart: unless-stopped
env_file:
- path: ../.env
Expand Down
2 changes: 1 addition & 1 deletion .compose/examples/tom+fed+chat.sqlite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ services:
- auth

synapse:
image: matrixdotorg/synapse
image: matrixdotorg/synapse:v1.119.0
restart: unless-stopped
env_file:
- path: ../.env
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ services:
- auth

synapse:
image: matrixdotorg/synapse
image: matrixdotorg/synapse:v1.119.0
restart: unless-stopped
env_file:
- path: ./.compose/.env
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ services:
- test

synapse-federated-identity-service: &synapse_template
image: matrixdotorg/synapse:v1.89.0
image: matrixdotorg/synapse:v1.119.0
container_name: synapse-federated-identity-service
volumes:
- ./synapse-data:/data
- ./nginx/ssl/ca.pem:/etc/ssl/certs/ca.pem
- ./nginx/ssl/9da13359.0:/etc/ssl/certs/9da13359.0
depends_on:
- auth
environment:
environment:
- UID=${MYUID}
- VIRTUAL_PORT=8008
- VIRTUAL_HOST=matrix.example.com
Expand All @@ -47,7 +47,7 @@ services:
synapse-1:
<<: *synapse_template
container_name: synapse-1
environment:
environment:
- UID=${MYUID}
- VIRTUAL_PORT=8008
- VIRTUAL_HOST=matrix1.example.com
Expand All @@ -56,7 +56,7 @@ services:
synapse-2:
<<: *synapse_template
container_name: synapse-2
environment:
environment:
- UID=${MYUID}
- VIRTUAL_PORT=8008
- VIRTUAL_HOST=matrix2.example.com
Expand All @@ -65,7 +65,7 @@ services:
synapse-3:
<<: *synapse_template
container_name: synapse-3
environment:
environment:
- UID=${MYUID}
- VIRTUAL_PORT=8008
- VIRTUAL_HOST=matrix3.example.com
Expand Down Expand Up @@ -157,11 +157,11 @@ services:
volumes:
- ./nginx/ssl/ca.pem:/etc/ssl/certs/ca.pem
- ./identity-server/conf/identity-server-2.conf:/etc/twake/identity-server.conf
environment:
environment:
- NODE_EXTRA_CA_CERTS=/etc/ssl/certs/ca.pem
- VIRTUAL_PORT=3000
- VIRTUAL_HOST=identity2.example.com

identity-server-3:
<<: *identity-server-template
container_name: identity-server-3
Expand Down Expand Up @@ -200,4 +200,4 @@ services:

networks:
test:
name: test
name: test
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.4'

services:
synapse:
image: matrixdotorg/synapse:latest
image: matrixdotorg/synapse:v1.119.0
container_name: synapse
hostname: matrix.example.com
volumes:
Expand Down
2 changes: 1 addition & 1 deletion packages/matrix-identity-server/matrix-server/init
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ docker run -it --rm \
-e SYNAPSE_REPORT_STATS=no \
-e UID=$MYUID \
-e GID=$MYGID \
matrixdotorg/synapse:latest generate
matrixdotorg/synapse:v1.119.0 generate

chmod 644 synapse-data/example.com.signing.key
mkdir -p synapse-data/media_store
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.8'

services:
synapse:
image: matrixdotorg/synapse:v1.89.0
image: matrixdotorg/synapse:v1.119.0
container_name: synapse-tom-1
volumes:
- ./synapse-data:/data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ services:
- twake_chat

synapse:
image: matrixdotorg/synapse:v1.89.0
image: matrixdotorg/synapse:v1.119.0
container_name: synapse-tom
volumes:
- ./synapse-data:/data
Expand Down
Loading