mirror of
https://github.com/TECHNOFAB11/dbmate.git
synced 2025-12-12 16:10:03 +01:00
34 lines
672 B
YAML
34 lines
672 B
YAML
version: '2.3'
|
|
services:
|
|
dev:
|
|
build:
|
|
context: .
|
|
target: dev
|
|
volumes:
|
|
- .:/src
|
|
depends_on:
|
|
- mysql
|
|
- postgres
|
|
- clickhouse
|
|
environment:
|
|
MYSQL_URL: mysql://root:root@mysql/dbmate
|
|
POSTGRESQL_URL: postgres://postgres:postgres@postgres/dbmate?sslmode=disable
|
|
CLICKHOUSE_URL: clickhouse://clickhouse:9000?database=dbmate
|
|
|
|
dbmate:
|
|
build:
|
|
context: .
|
|
target: release
|
|
|
|
mysql:
|
|
image: mysql:5.7
|
|
environment:
|
|
MYSQL_ROOT_PASSWORD: root
|
|
|
|
postgres:
|
|
image: postgres:10
|
|
environment:
|
|
POSTGRES_PASSWORD: postgres
|
|
|
|
clickhouse:
|
|
image: yandex/clickhouse-server:19.16
|