-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
40 lines (37 loc) · 832 Bytes
/
docker-compose.yml
File metadata and controls
40 lines (37 loc) · 832 Bytes
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
services:
pg_test:
image: postgres:16.8
ports:
- 5433:5432
environment:
- POSTGRES_PASSWORD=test
- POSTGRES_USER=test
- POSTGRES_DB=test
mysql_test:
image: mysql
ports:
- 3307:3306
environment:
- MYSQL_ROOT_PASSWORD=test
- MYSQL_DATABASE=test
- MYSQL_USER=test
- MYSQL_PASSWORD=test
mariadb:
image: mariadb
restart: always
environment:
- MARIADB_ROOT_PASSWORD=test
- MARIADB_DATABASE=test
- MARIADB_USER=test
- MARIADB_PASSWORD=test
ports:
- 3309:3306
clickhouse_test:
image: clickhouse/clickhouse-server
ports:
- "9001:9000"
environment:
CLICKHOUSE_DB: "test"
CLICKHOUSE_USER: "test"
CLICKHOUSE_PASSWORD: "test"
CLICKHOUSE_DEFAULT_ACCESS_MANAGEMENT: "0"