19 lines
433 B
YAML
19 lines
433 B
YAML
|
version: '3.2'
|
||
|
|
||
|
services:
|
||
|
statediff-migrations:
|
||
|
restart: on-failure
|
||
|
depends_on:
|
||
|
- test-db
|
||
|
image: vulcanize/statediff-migrations:latest
|
||
|
|
||
|
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"
|