-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
39 lines (39 loc) · 898 Bytes
/
docker-compose.yaml
File metadata and controls
39 lines (39 loc) · 898 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
services:
pg_latest_1:
image: postgres:17-alpine
ports:
- "5432:5432"
environment:
POSTGRES_USER: root
POSTGRES_HOST_AUTH_METHOD: trust
pg_latest_2:
image: postgres:17-alpine
ports:
- "5433:5432"
environment:
POSTGRES_USER: root
POSTGRES_HOST_AUTH_METHOD: trust
pg_11_1:
image: postgres:11-alpine
ports:
- "5434:5432"
environment:
POSTGRES_USER: root
POSTGRES_HOST_AUTH_METHOD: trust
pg_11_2:
image: postgres:11-alpine
ports:
- "5435:5432"
environment:
POSTGRES_USER: root
POSTGRES_HOST_AUTH_METHOD: trust
cockroachdb_1:
image: cockroachdb/cockroach:v24.1.2
ports:
- "5436:26257"
command: start-single-node --insecure
cockroachdb_2:
image: cockroachdb/cockroach:v24.1.2
ports:
- "5437:26257"
command: start-single-node --insecure