Browse Source
Update integration-tests.test.yml
Remove unsupported versioning. Doesn't use stack deploy, uses docker-compose to run tests.
pull/119/head
Rob Harrison
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
0 additions and
10 deletions
-
postgres-backup-s3/integration-tests.test.yml
|
|
@ -2,21 +2,11 @@ version: '3.7' |
|
|
services: |
|
|
services: |
|
|
postgres: |
|
|
postgres: |
|
|
image: camptocamp/postgres:9.6 |
|
|
image: camptocamp/postgres:9.6 |
|
|
deploy: |
|
|
|
|
|
replicas: 1 |
|
|
|
|
|
environment: |
|
|
environment: |
|
|
- POSTGRES_PASSWORD=12345 |
|
|
- POSTGRES_PASSWORD=12345 |
|
|
- POSTGRES_USER=user |
|
|
- POSTGRES_USER=user |
|
|
- PGDATA=/var/lib/postgresql/data/pgdata |
|
|
|
|
|
configs: |
|
|
|
|
|
- source: master-db-config_2 |
|
|
|
|
|
target: /etc/postgresql/postgresql.conf |
|
|
|
|
|
command: -c 'config_file=/etc/postgresql/postgresql.conf' |
|
|
|
|
|
sut: |
|
|
sut: |
|
|
build: . |
|
|
build: . |
|
|
command: 'sh integration-tests.sh' |
|
|
command: 'sh integration-tests.sh' |
|
|
depends_on: |
|
|
depends_on: |
|
|
- postgres |
|
|
- postgres |
|
|
configs: |
|
|
|
|
|
master-db-config: |
|
|
|
|
|
file: ./config/master.conf |
|
|
|