-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.adapters.yml
More file actions
40 lines (38 loc) · 1.12 KB
/
docker-compose.adapters.yml
File metadata and controls
40 lines (38 loc) · 1.12 KB
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
version: "3.9"
services:
postgres:
image: postgres:15
restart: always
environment:
POSTGRES_DB: test_db
POSTGRES_USER: test_user
POSTGRES_PASSWORD: test_pass
ports:
- "5432:5432"
volumes:
- ./test/support/adapters/postgresql-seed.sql:/docker-entrypoint-initdb.d/seed.sql
mysql:
image: mysql:8
restart: always
environment:
MYSQL_ROOT_PASSWORD: root_pass
MYSQL_DATABASE: test_db
MYSQL_USER: test_user
MYSQL_PASSWORD: test_pass
ports:
- "3306:3306"
volumes:
- ./test/support/adapters/mysql-seed.sql:/docker-entrypoint-initdb.d/mysql-seed.sql
clickhouse:
image: clickhouse/clickhouse-server:25.5
restart: always
environment:
CLICKHOUSE_DB: test_db
CLICKHOUSE_USER: test_user
CLICKHOUSE_DEFAULT_ACCESS_MANAGEMENT: 1
CLICKHOUSE_PASSWORD: test_pass
ports:
- "8123:8123"
volumes:
- ./test/support/adapters/clickhouse-seed-init.sql:/docker-entrypoint-initdb.d/clickhouse-seed-a.sql
- ./test/support/adapters/clickhouse-seed-data.sql:/docker-entrypoint-initdb.d/clickhouse-seed-b.sql