forked from mit-dci/opencbdc-tx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-atomizer.yml
99 lines (92 loc) · 2.05 KB
/
docker-compose-atomizer.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
version: '3'
services:
watchtower0:
build: .
image: opencbdc-tx
tty: true
command: ./build/src/uhs/atomizer/watchtower/watchtowerd atomizer-compose.cfg 0
ports:
- 8555:8555
expose:
- "8556"
networks:
- atomizer-network
healthcheck:
test: ["CMD-SHELL", "netstat -ltn | grep -c 8555"]
interval: 30s
timeout: 10s
retries: 5
atomizer0:
build: .
image: opencbdc-tx
tty: true
command: ./build/src/uhs/atomizer/atomizer/atomizer-raftd atomizer-compose.cfg 0
expose:
- "5555"
depends_on:
- "watchtower0"
networks:
- atomizer-network
healthcheck:
test: ["CMD-SHELL", "netstat -ltn | grep -c 5555"]
interval: 30s
timeout: 10s
retries: 5
archiver0:
build: .
image: opencbdc-tx
tty: true
command: ./build/src/uhs/atomizer/archiver/archiverd atomizer-compose.cfg 0
expose:
- "4555"
depends_on:
- "watchtower0"
- "atomizer0"
networks:
- atomizer-network
restart: always
healthcheck:
test: ["CMD-SHELL", "netstat -ltn | grep -c 4555"]
interval: 30s
timeout: 10s
retries: 5
shard0:
build: .
image: opencbdc-tx
tty: true
command: ./build/src/uhs/atomizer/shard/shardd atomizer-compose.cfg 0
expose:
- "6555"
depends_on:
- "watchtower0"
- "archiver0"
- "atomizer0"
networks:
- atomizer-network
restart: always
healthcheck:
test: ["CMD-SHELL", "netstat -ltn | grep -c 6555"]
interval: 30s
timeout: 10s
retries: 5
sentinel0:
build: .
image: opencbdc-tx
tty: true
command: ./build/src/uhs/atomizer/sentinel/sentineld atomizer-compose.cfg 0
ports:
- 7555:7555
depends_on:
- "watchtower0"
- "shard0"
networks:
- atomizer-network
restart: always
healthcheck:
test: ["CMD-SHELL", "netstat -ltn | grep -c 7555"]
interval: 30s
timeout: 10s
retries: 5
networks:
atomizer-network:
name: atomizer-network