You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
329 B

version: '3.7'
services:
postgres:
image: camptocamp/postgres:9.6
environment:
- POSTGRES_PASSWORD=12345
- POSTGRES_USER=user
- PGDATA=/var/lib/postgresql/data/pgdata
sut:
build: .
command: 'sh integration-tests.sh'
environment:
- PGPASSWORD=12345
depends_on:
- postgres