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
|
|
|
depends_on:
|
2018-04-15 20:34:19 -07:00
|
|
|
- mysql
|
|
|
|
|
- postgres
|
|
|
|
|
environment:
|
|
|
|
|
MYSQL_URL: mysql://root:root@mysql/dbmate
|
|
|
|
|
POSTGRESQL_URL: postgres://postgres:postgres@postgres/dbmate?sslmode=disable
|
2017-04-23 20:46:27 -07:00
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
postgres:
|
2020-05-24 15:55:32 -07:00
|
|
|
image: postgres:10
|
2020-03-01 22:03:31 -08:00
|
|
|
environment:
|
|
|
|
|
POSTGRES_PASSWORD: postgres
|