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

services:

  postgres:
    image: postgres:11
    environment:
      POSTGRES_PASSWORD: postgres
      POSTGRES_INITDB_ARGS: "--lc-collate C --lc-ctype C --encoding UTF8"
    command: -c fsync=off

  testenv:
    image: python:3.7
    depends_on:
      - postgres
    env_file: docker-compose-env
    environment:
      SYNAPSE_POSTGRES_HOST: postgres
      SYNAPSE_POSTGRES_USER: postgres
      SYNAPSE_POSTGRES_PASSWORD: postgres
    working_dir: /src
    volumes:
      - ${BUILDKITE_BUILD_CHECKOUT_PATH}:/src