forked from k1LoW/tbls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
compose.yml
85 lines (85 loc) · 2 KB
/
compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
services:
postgres95:
image: postgres:9.5
platform: linux/amd64
restart: always
ports:
- "55432:5432"
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=pgpass
- POSTGRES_DB=testdb
postgres:
image: postgres:15
restart: always
ports:
- "55413:5432"
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=pgpass
- POSTGRES_DB=testdb
mysql56:
image: mysql:5.6
platform: linux/amd64
restart: always
ports:
- "33306:3306"
environment:
- MYSQL_DATABASE=testdb
- MYSQL_ROOT_PASSWORD=mypass
mysql:
image: mysql:8
restart: always
ports:
- "33308:3306"
environment:
- MYSQL_DATABASE=testdb
- MYSQL_ROOT_PASSWORD=mypass
- LANG=C.UTF-8
volumes:
- ./testdata/ddl/mysql:/docker-entrypoint-initdb.d
mariadb:
image: mariadb:10.5
restart: always
ports:
- "33309:3306"
environment:
- MYSQL_DATABASE=testdb
- MYSQL_ROOT_PASSWORD=mypass
mssql:
image: mcr.microsoft.com/mssql/server:2017-latest
restart: always
ports:
- "11433:1433"
environment:
- ACCEPT_EULA=Y
- SA_PASSWORD=MSSQLServer-Passw0rd
dynamodb:
image: amazon/dynamodb-local
restart: always
ports:
- "18000:8000"
mongo:
image: mongo:4.4.18
restart: always
environment:
- MONGO_INITDB_ROOT_USERNAME=mongoadmin
- MONGO_INITDB_ROOT_PASSWORD=secret
- MONGO_INITDB_DATABASE=test
volumes:
- ./testdata/ddl/mongo:/docker-entrypoint-initdb.d
ports:
- "27017:27017"
clickhouse:
image: clickhouse/clickhouse-server:24.4
restart: always
environment:
- CLICKHOUSE_DB=testdb
- CLICKHOUSE_DEFAULT_ACCESS_MANAGEMENT=1
volumes:
- ./testdata/ddl/clickhouse:/docker-entrypoint-initdb.d
healthcheck:
test: wget --no-verbose --tries=1 --spider http://localhost:8123/?query=SELECT%201 || exit 1
ports:
- "8123:8123"
- "9000:9000"