dbmate/docker-compose.yml

28 lines
588 B
YAML
Raw Normal View History

version: '2.3'
services:
dbmate:
build:
context: .
target: build
depends_on:
- mysql
- postgres
2020-08-08 00:38:48 +04:00
- clickhouse
environment:
MYSQL_URL: mysql://root:root@mysql/dbmate
POSTGRESQL_URL: postgres://postgres:postgres@postgres/dbmate?sslmode=disable
2020-08-08 00:38:48 +04:00
CLICKHOUSE_URL: clickhouse://clickhouse:9000?database=dbmate
mysql:
image: mysql:5.7
environment:
MYSQL_ROOT_PASSWORD: root
postgres:
2020-05-24 15:55:32 -07:00
image: postgres:10
environment:
POSTGRES_PASSWORD: postgres
2020-08-08 00:38:48 +04:00
clickhouse:
image: yandex/clickhouse-server:19.16