mirror of
https://github.com/matrix-org/matrix-rust-sdk.git
synced 2026-05-04 05:58:11 -04:00
This patch removes the sliding sync proxy, and makes the `matrix-sdk-integration-testing` tests to run against Synapse with MSC4186 enabled.
30 lines
490 B
YAML
30 lines
490 B
YAML
services:
|
|
|
|
synapse:
|
|
build: .
|
|
restart: "no"
|
|
healthcheck:
|
|
disable: true
|
|
volumes:
|
|
- synapse:/data
|
|
ports:
|
|
- 8228:8008/tcp
|
|
|
|
postgres:
|
|
image: docker.io/postgres
|
|
environment:
|
|
POSTGRES_PASSWORD: postgres
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_DB: syncv3
|
|
healthcheck:
|
|
test: ["CMD", "pg_isready"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
volumes:
|
|
- db:/var/lib/postgresql/data
|
|
|
|
volumes:
|
|
synapse:
|
|
db:
|