Files
matrix-rust-sdk/testing/matrix-sdk-integration-testing/assets/docker-compose.yml
Ivan Enderlin 40f1ce80ea test: Bye bye SS proxy, hello Synapse \o/.
This patch removes the sliding sync proxy, and makes the
`matrix-sdk-integration-testing` tests to run against Synapse with
MSC4186 enabled.
2024-09-24 15:09:05 +02:00

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: