-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.yml
376 lines (376 loc) · 10.2 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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
# The following environment variables are substituted if present
# * QUORUM_CONSENSUS: default to istanbul
# * QUORUM_DOCKER_IMAGE: default to quorumengineering/quorum:latest
# * QUORUM_QUORUM_TX_MANAGER_DOCKER_IMAGE: default to quorumengineering/tessera:latest
version: "3.7"
x-quorum-def:
&quorum-def
restart: "on-failure"
image: "${QUORUM_DOCKER_IMAGE:-quorumengineering/quorum:latest}"
expose:
- "21000"
- "50400"
healthcheck:
test: ["CMD", "wget", "--spider", "http://localhost:8545"]
interval: 3s
timeout: 3s
retries: 10
start_period: 5s
labels:
com.quorum.consensus: ${QUORUM_CONSENSUS:-istanbul}
entrypoint:
- /bin/sh
- -c
- |
DDIR=/qdata/dd
rm -rf $${DDIR}
mkdir -p $${DDIR}/keystore
mkdir -p $${DDIR}/geth
cp /examples/raft/nodekey$${NODE_ID} $${DDIR}/geth/nodekey
cp /examples/keys/key1 $${DDIR}/keystore/
cat /examples/permissioned-nodes.json | sed 's/^\(.*\)@.*\?\(.*\)raftport=5040\([0-9]\)\(.*\)$$/\[email protected]\3:21000?discport=0\&raftport=50400\4/g' > $${DDIR}/static-nodes.json
cp $${DDIR}/static-nodes.json $${DDIR}/permissioned-nodes.json
cat $${DDIR}/static-nodes.json
GENESIS_FILE="/examples/istanbul-genesis.json"
if [ "${QUORUM_CONSENSUS:-istanbul}" == "raft" ]; then
GENESIS_FILE="/examples/genesis.json"
fi
NETWORK_ID=$$(cat $${GENESIS_FILE} | grep chainId | awk -F " " '{print $$2}' | awk -F "," '{print $$1}')
GETH_ARGS_raft="--raft --raftport 50400"
GETH_ARGS_istanbul="--emitcheckpoints --istanbul.blockperiod 1 --mine --minerthreads 1 --syncmode full"
geth --datadir $${DDIR} init $${GENESIS_FILE}
geth \
--identity node$${NODE_ID}-${QUORUM_CONSENSUS:-istanbul} \
--datadir $${DDIR} \
--permissioned \
--nodiscover \
--verbosity 5 \
--networkid $${NETWORK_ID} \
--rpc \
--rpcaddr 0.0.0.0 \
--rpcport 8545 \
--rpcapi admin,db,eth,debug,miner,net,shh,txpool,personal,web3,quorum,${QUORUM_CONSENSUS:-istanbul} \
--port 21000 \
--unlock 0 \
--password /examples/passwords.txt \
$${GETH_ARGS_${QUORUM_CONSENSUS:-istanbul}}
x-tx-manager-tessera-def:
&tx-manager-tessera-def
image: "${QUORUM_TX_MANAGER_DOCKER_IMAGE:-quorumengineering/tessera:latest}"
expose:
- "9000"
restart: "no"
healthcheck:
test: ["CMD", "wget", "--spider", "http://localhost:9000/upcheck"]
interval: 3s
timeout: 3s
retries: 10
start_period: 5s
entrypoint:
- /bin/sh
- -c
- |
DDIR=/qdata/tm
rm -rf $${DDIR}
mkdir -p $${DDIR}
cp /examples/keys/tm$${NODE_ID}.pub $${DDIR}/tm.pub
cp /examples/keys/tm$${NODE_ID}.key $${DDIR}/tm.key
cat <<EOF > $${DDIR}/tessera-config.json
{
"useWhiteList": false,
"jdbc": {
"username": "sa",
"password": "",
"url": "jdbc:h2:./$${DDIR}/db;MODE=Oracle;TRACE_LEVEL_SYSTEM_OUT=0"
},
"server": {
"port": 9000,
"hostName": "http://$$(hostname -i)",
"sslConfig": {
"tls": "OFF",
"generateKeyStoreIfNotExisted": true,
"serverKeyStore": "$${DDIR}/server-keystore",
"serverKeyStorePassword": "quorum",
"serverTrustStore": "$${DDIR}/server-truststore",
"serverTrustStorePassword": "quorum",
"serverTrustMode": "TOFU",
"knownClientsFile": "$${DDIR}/knownClients",
"clientKeyStore": "$${DDIR}/client-keystore",
"clientKeyStorePassword": "quorum",
"clientTrustStore": "$${DDIR}/client-truststore",
"clientTrustStorePassword": "quorum",
"clientTrustMode": "TOFU",
"knownServersFile": "$${DDIR}/knownServers"
}
},
"peer": [
{
"url": "http://txmanager1:9000"
},
{
"url": "http://txmanager2:9000"
},
{
"url": "http://txmanager3:9000"
},
{
"url": "http://txmanager4:9000"
},
{
"url": "http://txmanager5:9000"
},
{
"url": "http://txmanager6:9000"
},
{
"url": "http://txmanager7:9000"
}
],
"keys": {
"passwords": [],
"keyData": [
{
"config": $$(cat $${DDIR}/tm.key),
"publicKey": "$$(cat $${DDIR}/tm.pub)"
}
]
},
"alwaysSendTo": [],
"unixSocketFile": "$${DDIR}/tm.ipc"
}
EOF
java -Xms128M -Xmx128M -jar /tessera/tessera-app.jar -configfile $${DDIR}/tessera-config.json
x-tx-manager-constellation-def:
&tx-manager-constellation-def
image: "${QUORUM_TX_MANAGER_DOCKER_IMAGE:-quorumengineering/constellation:latest}"
expose:
- "9000"
restart: "no"
healthcheck:
test: ["CMD", "wget", "--spider", "http://localhost:9000"]
interval: 3s
timeout: 3s
retries: 10
start_period: 5s
entrypoint:
- /bin/sh
- -c
- |
DDIR=/qdata/tm
rm -rf $${DDIR}
mkdir -p $${DDIR}
echo "socket=\"$${DDIR}/tm.ipc\"\npublickeys=[\"/examples/keys/tm$${NODE_ID}.pub\"]\n" > $${DDIR}/tm.conf
constellation-node \
--url=http://$$(hostname -i):9000/ \
--port=9000 \
--socket=$${DDIR}/tm.ipc \
--othernodes=http://172.16.239.101:9000/,http://172.16.239.102:9000/,http://172.16.239.103:9000/,http://172.16.239.104:9000/,http://172.16.239.105:9000/ \
--publickeys=/examples/keys/tm$${NODE_ID}.pub \
--privatekeys=/examples/keys/tm$${NODE_ID}.key \
--storage=$${DDIR} \
--verbosity=4
services:
node1:
<< : *quorum-def
hostname: node1
ports:
- "22000:8545"
volumes:
- 1:/qdata
- ./examples/7nodes:/examples:ro
depends_on:
- txmanager1
environment:
- PRIVATE_CONFIG=/qdata/tm/tm.ipc
- NODE_ID=1
networks:
quorum-examples-net:
ipv4_address: 172.16.239.11
txmanager1:
<< : *tx-manager-tessera-def
hostname: txmanager1
volumes:
- 1:/qdata
- ./examples/7nodes:/examples:ro
networks:
quorum-examples-net:
ipv4_address: 172.16.239.101
environment:
- NODE_ID=1
node2:
<< : *quorum-def
hostname: node2
ports:
- "22001:8545"
volumes:
- 2:/qdata
- ./examples/7nodes:/examples:ro
depends_on:
- txmanager2
environment:
- PRIVATE_CONFIG=/qdata/tm/tm.ipc
- NODE_ID=2
networks:
quorum-examples-net:
ipv4_address: 172.16.239.12
txmanager2:
<< : *tx-manager-tessera-def
hostname: txmanager2
volumes:
- 2:/qdata
- ./examples/7nodes:/examples:ro
networks:
quorum-examples-net:
ipv4_address: 172.16.239.102
environment:
- NODE_ID=2
node3:
<< : *quorum-def
hostname: node3
ports:
- "22002:8545"
volumes:
- 3:/qdata
- ./examples/7nodes:/examples:ro
depends_on:
- txmanager3
environment:
- PRIVATE_CONFIG=/qdata/tm/tm.ipc
- NODE_ID=3
networks:
quorum-examples-net:
ipv4_address: 172.16.239.13
txmanager3:
<< : *tx-manager-tessera-def
hostname: txmanager3
volumes:
- 3:/qdata
- ./examples/7nodes:/examples:ro
networks:
quorum-examples-net:
ipv4_address: 172.16.239.103
environment:
- NODE_ID=3
node4:
<< : *quorum-def
hostname: node4
ports:
- "22003:8545"
volumes:
- 4:/qdata
- ./examples/7nodes:/examples:ro
depends_on:
- txmanager4
environment:
- PRIVATE_CONFIG=/qdata/tm/tm.ipc
- NODE_ID=4
networks:
quorum-examples-net:
ipv4_address: 172.16.239.14
txmanager4:
<< : *tx-manager-tessera-def
hostname: txmanager4
volumes:
- 4:/qdata
- ./examples/7nodes:/examples:ro
networks:
quorum-examples-net:
ipv4_address: 172.16.239.104
environment:
- NODE_ID=4
node5:
<< : *quorum-def
hostname: node5
ports:
- "22004:8545"
volumes:
- 5:/qdata
- ./examples/7nodes:/examples:ro
depends_on:
- txmanager5
environment:
- PRIVATE_CONFIG=/qdata/tm/tm.ipc
- NODE_ID=5
networks:
quorum-examples-net:
ipv4_address: 172.16.239.15
txmanager5:
<< : *tx-manager-tessera-def
hostname: txmanager5
volumes:
- 5:/qdata
- ./examples/7nodes:/examples:ro
networks:
quorum-examples-net:
ipv4_address: 172.16.239.105
environment:
- NODE_ID=5
node6:
<< : *quorum-def
hostname: node6
ports:
- "22005:8545"
volumes:
- 6:/qdata
- ./examples/7nodes:/examples:ro
depends_on:
- txmanager6
environment:
- PRIVATE_CONFIG=/qdata/tm/tm.ipc
- NODE_ID=6
networks:
quorum-examples-net:
ipv4_address: 172.16.239.16
txmanager6:
<< : *tx-manager-tessera-def
hostname: txmanager6
volumes:
- 6:/qdata
- ./examples/7nodes:/examples:ro
networks:
quorum-examples-net:
ipv4_address: 172.16.239.106
environment:
- NODE_ID=6
node7:
<< : *quorum-def
hostname: node7
ports:
- "22006:8545"
volumes:
- 7:/qdata
- ./examples/7nodes:/examples:ro
depends_on:
- txmanager7
environment:
- PRIVATE_CONFIG=/qdata/tm/tm.ipc
- NODE_ID=7
networks:
quorum-examples-net:
ipv4_address: 172.16.239.17
txmanager7:
<< : *tx-manager-tessera-def
hostname: txmanager7
volumes:
- 7:/qdata
- ./examples/7nodes:/examples:ro
networks:
quorum-examples-net:
ipv4_address: 172.16.239.107
environment:
- NODE_ID=7
networks:
quorum-examples-net:
driver: bridge
ipam:
driver: default
config:
- subnet: 172.16.239.0/24
volumes:
"1":
"2":
"3":
"4":
"5":
"6":
"7":