summary refs log blame commit diff
path: root/.buildkite/docker-compose.py37.pg95.yaml
blob: 02fcd2830476facfcb2983c6dc7fdfe98af92d09 (plain) (tree)
1
2
3
4
5
6
7
8
9






                                 
                         








                                         
                     
            
               
version: '3.1'

services:

  postgres:
    image: postgres:9.5
    environment:
      POSTGRES_PASSWORD: postgres
    command: -c fsync=off

  testenv:
    image: python:3.7
    depends_on:
      - postgres
    env_file: .env
    environment:
      SYNAPSE_POSTGRES_HOST: postgres
      SYNAPSE_POSTGRES_USER: postgres
      SYNAPSE_POSTGRES_PASSWORD: postgres
    working_dir: /src
    volumes:
      - ..:/src