-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
66 lines (62 loc) · 1.56 KB
/
docker-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
services:
veriflow_timescale:
image: timescale/timescaledb:latest-pg15
container_name: veriflow_timescale
environment:
POSTGRES_DB: veriflow_timescale
POSTGRES_USER: admin
POSTGRES_PASSWORD: admin
ports:
- "5432:5432"
volumes:
- veriflow_timescale_data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U admin"]
interval: 10s
timeout: 5s
retries: 5
restart: unless-stopped
veriflow_test_1:
image: timescale/timescaledb:latest-pg15
container_name: veriflow_test_1
environment:
POSTGRES_DB: veriflow_test_1
POSTGRES_USER: admin
POSTGRES_PASSWORD: admin
ports:
- "5433:5432"
volumes:
- veriflow_test_1_data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U admin"]
interval: 10s
timeout: 5s
retries: 5
restart: unless-stopped
veriflow_test_2:
image: timescale/timescaledb:latest-pg15
container_name: veriflow_test_2
environment:
POSTGRES_DB: veriflow_test_2
POSTGRES_USER: admin
POSTGRES_PASSWORD: admin
ports:
- "5434:5432"
volumes:
- veriflow_test_2_data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U admin"]
interval: 10s
timeout: 5s
retries: 5
restart: unless-stopped
adminer:
image: adminer
container_name: veriflow_adminer
restart: always
ports:
- "3000:8080"
volumes:
veriflow_timescale_data:
veriflow_test_1_data:
veriflow_test_2_data: