2021-09-30 12:39:48 +00:00
|
|
|
version: '3.2'
|
|
|
|
|
|
|
|
services:
|
|
|
|
statediff-migrations:
|
|
|
|
restart: on-failure
|
|
|
|
depends_on:
|
|
|
|
- test-db
|
2021-10-08 13:03:37 +00:00
|
|
|
image: vulcanize/statediff-migrations:v0.9.0
|
2021-09-30 12:39:48 +00:00
|
|
|
|
|
|
|
test-db:
|
|
|
|
restart: always
|
|
|
|
image: postgres:10.12-alpine
|
|
|
|
command: ["postgres", "-c", "log_statement=all"]
|
|
|
|
environment:
|
|
|
|
POSTGRES_USER: "vdbm"
|
|
|
|
POSTGRES_DB: "vulcanize_testing"
|
|
|
|
POSTGRES_PASSWORD: "password"
|
|
|
|
ports:
|
|
|
|
- "127.0.0.1:8066:5432"
|