dbmate/docker-compose.yml

35 lines
672 B
YAML
Raw Normal View History

version: '2.3'
services:
2020-11-02 20:22:59 +13:00
dev:
build:
context: .
2020-11-02 20:22:59 +13:00
target: dev
volumes:
- .:/src
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
2020-11-02 20:22:59 +13:00
dbmate:
build:
context: .
target: release
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