-
Notifications
You must be signed in to change notification settings - Fork 21
/
docker-compose.yml
236 lines (224 loc) · 5.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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
services:
prime:
environment:
- TCP_PORT=30303
- HTTP_PORT=8547
- WS_PORT=8548
- NETWORK=garden
- SUB=--sub.urls ws://cyprus:8579,ws://paxos:8581,ws://hydra:8583
- COINBASE_ADDR=0x00114a47a5d39ea2022dd4d864cb62cfd16879fc
image: quainetwork/go-quai:test16
ports:
- "30303:30303"
- "8547:8547"
- "8548:8548"
volumes:
- ~/.quai:/root/.quai
cyprus:
environment:
- TCP_PORT=30304
- HTTP_PORT=8578
- WS_PORT=8579
- NETWORK=garden
- REGION=--region 0
- DOM=--dom.url ws://prime:8548
- SUB=--sub.urls ws://cyprus1:8611,ws://cyprus2:8643,ws://cyprus3:8675
- COINBASE_ADDR=0x0d79b69c082e6f6a2e78a10a9a49baedb7db37a5
image: quainetwork/go-quai:test16
ports:
- "30304:30304"
- "8578:8578"
- "8579:8579"
volumes:
- ~/.quai:/root/.quai
paxos:
environment:
- TCP_PORT=30305
- HTTP_PORT=8580
- WS_PORT=8581
- NETWORK=garden
- REGION=--region 1
- DOM=--dom.url ws://prime:8548
- SUB=--sub.urls ws://paxos1:8613,ws://paxos2:8645,ws://paxos3:8677
- COINBASE_ADDR=0x5a457339697cb56e5a9bfa5267ea80d2c6375d98
image: quainetwork/go-quai:test16
ports:
- "30305:30305"
- "8580:8580"
- "8581:8581"
volumes:
- ~/.quai:/root/.quai
hydra:
environment:
- TCP_PORT=30306
- HTTP_PORT=8582
- WS_PORT=8583
- NETWORK=garden
- REGION=--region 2
- DOM=--dom.url ws://prime:8548
- SUB=--sub.urls ws://hydra1:8615,ws://hydra2:8647,ws://hydra3:8679
- COINBASE_ADDR=0x3bccbe6c6001c46874263169df887cbf5c3580d6
image: quainetwork/go-quai:test16
ports:
- "30306:30306"
- "8582:8582"
- "8583:8583"
volumes:
- ~/.quai:/root/.quai
cyprus1:
environment:
- TCP_PORT=30307
- HTTP_PORT=8610
- WS_PORT=8611
- NETWORK=garden
- REGION=--region 0
- ZONE=--zone 0
- DOM=--dom.url ws://cyprus:8579
- COINBASE_ADDR=0x1b00Fbd0eB8116704a1796A008DAecc14eb5a92e
image: quainetwork/go-quai:test16
ports:
- "30307:30307"
- "8610:8610"
- "8611:8611"
volumes:
- ~/.quai:/root/.quai
cyprus2:
environment:
- TCP_PORT=30308
- HTTP_PORT=8542
- WS_PORT=8643
- NETWORK=garden
- REGION=--region 0
- ZONE=--zone 1
- DOM=--dom.url ws://cyprus:8579
- COINBASE_ADDR=0x246ae82bb49e9dda583cb5fd304fd31cc1b69790
image: quainetwork/go-quai:test16
ports:
- "30308:30308"
- "8542:8542"
- "8642:8642"
volumes:
- ~/.quai:/root/.quai
cyprus3:
environment:
- TCP_PORT=30309
- HTTP_PORT=8674
- WS_PORT=8675
- NETWORK=garden
- REGION=--region 0
- ZONE=--zone 2
- DOM=--dom.url ws://cyprus:8579
- COINBASE_ADDR=0x2e82bec9c7e47564b9e89b5ab989c0002373c497
image: quainetwork/go-quai:test16
ports:
- "30309:30309"
- "8674:8674"
- "8675:8675"
volumes:
- ~/.quai:/root/.quai
paxos1:
environment:
- TCP_PORT=30310
- HTTP_PORT=8512
- WS_PORT=8613
- NETWORK=garden
- REGION=--region 1
- ZONE=--zone 0
- DOM=--dom.url ws://paxos:8581
- COINBASE_ADDR=0x421bc7323295c6b7f2f75fc4c854d4fb600e69e7
image: quainetwork/go-quai:test16
ports:
- "30310:30310"
- "8512:8512"
- "8613:8613"
volumes:
- ~/.quai:/root/.quai
paxos2:
environment:
- TCP_PORT=30311
- HTTP_PORT=8544
- WS_PORT=8645
- NETWORK=garden
- REGION=--region 1
- ZONE=--zone 1
- DOM=--dom.url ws://paxos:8581
- COINBASE_ADDR=0x4d6605da9271f8bcea42326a07f3c43f7f67a431
image: quainetwork/go-quai:test16
ports:
- "30311:30311"
- "8544:8544"
- "8645:8645"
volumes:
- ~/.quai:/root/.quai
paxos3:
environment:
- TCP_PORT=30312
- HTTP_PORT=8576
- WS_PORT=8677
- NETWORK=garden
- REGION=--region 1
- ZONE=--zone 2
- DOM=--dom.url ws://paxos:8581
- COINBASE_ADDR=0x59630c586ede320c8d7759f38373564f5f9faf20
image: quainetwork/go-quai:test16
ports:
- "30312:30312"
- "8576:8576"
- "8677:8677"
volumes:
- ~/.quai:/root/.quai
hydra1:
environment:
- TCP_PORT=30313
- HTTP_PORT=8614
- WS_PORT=8615
- NETWORK=garden
- REGION=--region 2
- ZONE=--zone 0
- DOM=--dom.url ws://hydra:8583
- COINBASE_ADDR=0x6b70b802661a87823a9cb16a8a39763bc8e11de4
image: quainetwork/go-quai:test16
ports:
- "30313:30313"
- "8614:8614"
- "8615:8615"
volumes:
- ~/.quai:/root/.quai
hydra2:
environment:
- TCP_PORT=30314
- HTTP_PORT=8646
- WS_PORT=8647
- NETWORK=garden
- REGION=--region 2
- ZONE=--zone 1
- DOM=--dom.url ws://hydra:8583
- COINBASE_ADDR=0x70820eb5e384b65caf931e85224601f3203ecd20
image: quainetwork/go-quai:test16
ports:
- "30314:30314"
- "8646:8646"
- "8647:8647"
volumes:
- ~/.quai:/root/.quai
hydra3:
environment:
- TCP_PORT=30315
- HTTP_PORT=8678
- WS_PORT=8679
- NETWORK=garden
- REGION=--region 2
- ZONE=--zone 2
- DOM=--dom.url ws://hydra:8583
- COINBASE_ADDR=0x7f8a6306426b57d13f1e3975d377574e18d7a7a3
image: quainetwork/go-quai:test16
ports:
- "30315:30315"
- "8678:8678"
- "8679:8679"
volumes:
- ~/.quai:/root/.quai
redis:
image: "redis:latest"
ports:
- "6379:6379"