2018-01-07 19:08:43 -08:00
|
|
|
version: '2.3'
|
2017-04-23 20:46:27 -07:00
|
|
|
services:
|
|
|
|
|
dbmate:
|
2018-01-07 19:08:43 -08:00
|
|
|
build:
|
|
|
|
|
context: .
|
|
|
|
|
target: build
|
2017-04-23 20:46:27 -07:00
|
|
|
volumes:
|
|
|
|
|
- .:/go/src/github.com/amacneil/dbmate
|
|
|
|
|
depends_on:
|
|
|
|
|
mysql:
|
|
|
|
|
condition: service_healthy
|
|
|
|
|
postgres:
|
|
|
|
|
condition: service_healthy
|
|
|
|
|
|
|
|
|
|
mysql:
|
2018-01-22 20:38:40 -08:00
|
|
|
image: mysql:5.7
|
2017-04-23 20:46:27 -07:00
|
|
|
environment:
|
|
|
|
|
MYSQL_ROOT_PASSWORD: root
|
|
|
|
|
healthcheck:
|
|
|
|
|
test: ["CMD", "mysqladmin", "status", "-proot"]
|
|
|
|
|
|
|
|
|
|
postgres:
|
2018-01-22 20:38:40 -08:00
|
|
|
image: postgres:9.6
|
2017-04-23 20:46:27 -07:00
|
|
|
healthcheck:
|
|
|
|
|
test: ["CMD", "pg_isready"]
|