mirror of
https://github.com/TECHNOFAB11/dbmate.git
synced 2025-12-15 01:13:49 +01:00
23 lines
452 B
YAML
23 lines
452 B
YAML
version: '2.1'
|
|
services:
|
|
dbmate:
|
|
build: .
|
|
volumes:
|
|
- .:/go/src/github.com/amacneil/dbmate
|
|
depends_on:
|
|
mysql:
|
|
condition: service_healthy
|
|
postgres:
|
|
condition: service_healthy
|
|
|
|
mysql:
|
|
image: mysql
|
|
environment:
|
|
MYSQL_ROOT_PASSWORD: root
|
|
healthcheck:
|
|
test: ["CMD", "mysqladmin", "status", "-proot"]
|
|
|
|
postgres:
|
|
image: postgres
|
|
healthcheck:
|
|
test: ["CMD", "pg_isready"]
|