forked from Consensys/quorum-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
497 lines (491 loc) · 14.8 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
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
# The following environment variables are substituted if present
# * QUORUM_CONSENSUS: default to istanbul
# * QUORUM_DOCKER_IMAGE: default to quorumengineering/quorum:2.1.1
# * QUORUM_TX_MANAGER_DOCKER_IMAGE: default to quorumengineering/tessera:0.7.3
# To use Constellation, set QUORUM_TX_MANAGER_DOCKER_IMAGE to Constellation docker image,
# e.g.: QUORUM_TX_MANAGER_DOCKER_IMAGE=quorumengineering/constellation:0.3.2 docker-compose up -d
version: "3.7"
x-quorum-def:
&quorum-def
restart: "on-failure"
image: "${QUORUM_DOCKER_IMAGE:-quorumengineering/quorum:2.1.1}"
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
- |
UDS_WAIT=10
for i in $$(seq 1 100)
do
set -e
if [ -S $${PRIVATE_CONFIG} ] && \
[ "I'm up!" == "$$(wget --timeout $${UDS_WAIT} -qO- 172.16.239.10$${NODE_ID}:9000/upcheck)" ];
then break
else
echo "Sleep $${UDS_WAIT} seconds. Waiting for TxManager."
sleep $${UDS_WAIT}
fi
done
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/key$${NODE_ID} $${DDIR}/keystore/
cat /examples/permissioned-nodes.json | sed 's/^\(.*\)@.*\?\(.*\)raftport=5040\([0-9]\)\(.*\)$$/\1@172.16.239.1\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-def:
&tx-manager-def
image: "${QUORUM_TX_MANAGER_DOCKER_IMAGE:-quorumengineering/tessera:0.7.3}"
expose:
- "9000"
- "9080"
restart: "no"
healthcheck:
test: ["CMD-SHELL", "[ -S /qdata/tm/tm.ipc ] || exit 1"]
interval: 3s
timeout: 3s
retries: 20
start_period: 5s
entrypoint:
- /bin/sh
- -c
- |
DDIR=/qdata/tm
rm -rf $${DDIR}
mkdir -p $${DDIR}
DOCKER_IMAGE="${QUORUM_TX_MANAGER_DOCKER_IMAGE:-quorumengineering/tessera:0.7.3}"
TX_MANAGER=$$(echo $${DOCKER_IMAGE} | sed 's/^.*\/\(.*\):.*$$/\1/g')
echo "TxManager: $${TX_MANAGER}"
case $${TX_MANAGER}
in
tessera)
cp /examples/keys/tm$${NODE_ID}.pub $${DDIR}/tm.pub
cp /examples/keys/tm$${NODE_ID}.key $${DDIR}/tm.key
#extract the tessera version from the jar
TESSERA_VERSION=$$(unzip -p /tessera/tessera-app.jar META-INF/MANIFEST.MF | grep Tessera-Version | cut -d" " -f2)
echo "Tessera version (extracted from manifest file): $${TESSERA_VERSION}"
#we're going to do a lexicographic comparison further down so we need "0.8" to be bigger than "0.8 " - thus adding -suffix
TESSERA_VERSION="$${TESSERA_VERSION}-suffix"
TESSERA_CONFIG_TYPE=
#the space in "0.8 " is important in the lexicographic comparision (space is lower value than most printable chars)
#TODO - this will break when we get to version 0.10 (hopefully we would have moved to 1.x by then)
if [ "$${TESSERA_VERSION}" \> "0.8 " ]; then
TESSERA_CONFIG_TYPE="-enhanced"
fi
echo Config type $${TESSERA_CONFIG_TYPE}
#generating the two config flavors
cat <<EOF > $${DDIR}/tessera-config.json
{
"useWhiteList": false,
"jdbc": {
"username": "sa",
"password": "",
"url": "jdbc:h2:./$${DDIR}/db;MODE=Oracle;TRACE_LEVEL_SYSTEM_OUT=0",
"autoCreateTables": true
},
"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
cat <<EOF > $${DDIR}/tessera-config-enhanced.json
{
"useWhiteList": false,
"jdbc": {
"username": "sa",
"password": "",
"url": "jdbc:h2:./$${DDIR}/db;MODE=Oracle;TRACE_LEVEL_SYSTEM_OUT=0",
"autoCreateTables": true
},
"serverConfigs":[
{
"app":"ThirdParty",
"enabled": true,
"serverSocket":{
"type":"INET",
"port": 9080,
"hostName": "http://$$(hostname -i)"
},
"communicationType" : "REST"
},
{
"app":"Q2T",
"enabled": true,
"serverSocket":{
"type":"UNIX",
"path":"$${DDIR}/tm.ipc"
},
"communicationType" : "UNIX_SOCKET"
},
{
"app":"P2P",
"enabled": true,
"serverSocket":{
"type":"INET",
"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"
},
"communicationType" : "REST"
}
],
"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": []
}
EOF
java -Xms128M -Xmx128M -jar /tessera/tessera-app.jar -configfile $${DDIR}/tessera-config$${TESSERA_CONFIG_TYPE}.json
;;
constellation)
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
;;
*)
echo "Invalid Transaction Manager"
exit 1
;;
esac
services:
node1:
<< : *quorum-def
hostname: node1
ports:
- "22000:8545"
volumes:
- vol1:/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-def
hostname: txmanager1
volumes:
- vol1:/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:
- vol2:/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-def
hostname: txmanager2
volumes:
- vol2:/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:
- vol3:/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-def
hostname: txmanager3
volumes:
- vol3:/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:
- vol4:/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-def
hostname: txmanager4
volumes:
- vol4:/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:
- vol5:/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-def
hostname: txmanager5
volumes:
- vol5:/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:
- vol6:/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-def
hostname: txmanager6
volumes:
- vol6:/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:
- vol7:/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-def
hostname: txmanager7
volumes:
- vol7:/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:
"vol1":
"vol2":
"vol3":
"vol4":
"vol5":
"vol6":
"vol7":