summary refs log tree commit diff
path: root/.buildkite/docker-compose.sytest.py37.redis.yaml
blob: b9e80cc557382038d45483abec8bd9feccab282f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
version: '3.1'

services:

  redis:
    image: redis:5.0

  sytest:
    image: matrixdotorg/sytest-synapse:py37
    depends_on:
      - redis
    env_file: docker-compose-env
    environment:
      POSTGRES: "1"
      WORKERS: "1"
      BLACKLIST: "synapse-blacklist-with-workers"
      REDIS: "redis"
    working_dir: "/src"
    entrypoint: ""
    volumes:
      - ${BUILDKITE_BUILD_CHECKOUT_PATH}:/src
      - ${BUILDKITE_BUILD_CHECKOUT_PATH}/logs:/logs