forked from Consensys/quorum-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
489 lines (487 loc) · 14.3 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
# The following environment variables are substituted if present
# * QUORUM_CONSENSUS: default to istanbul
# * QUORUM_DOCKER_IMAGE: default to quorumengineering/quorum:21.7.1
# * QUORUM_TX_MANAGER_DOCKER_IMAGE: default to quorumengineering/tessera:21.7.2
# * QUORUM_GETH_ARGS: extra geth arguments to be included when running geth
# 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
# To use Remix, set QUORUM_GETH_ARGS="--rpccorsdomain https://remix.ethereum.org"
version: "3.6"
x-quorum-def:
&quorum-def
restart: "on-failure"
image: "${QUORUM_DOCKER_IMAGE:-quorumengineering/quorum:21.7.1}"
expose:
- "21000"
- "50400"
healthcheck:
test: ["CMD", "wget", "--spider", "--proxy", "off", "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
if [ "$${PRIVATE_CONFIG}" != "ignore" ]; then
for i in $$(seq 1 100)
do
set -e
if [ -S $${PRIVATE_CONFIG} ] && \
[ "I'm up!" == "$$(wget --timeout $${UDS_WAIT} -qO- --proxy off 172.16.239.10$${NODE_ID}:9000/upcheck)" ];
then break
else
echo "Sleep $${UDS_WAIT} seconds. Waiting for TxManager."
sleep $${UDS_WAIT}
fi
done
fi
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/
cp /examples/disallowed-nodes.json $${DDIR}/
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"
CONSENSUS_RPC_API="istanbul"
if [ "${QUORUM_CONSENSUS:-istanbul}" == "raft" ]; then
GENESIS_FILE="/examples/genesis.json"
CONSENSUS_RPC_API="raft"
elif [ "${QUORUM_CONSENSUS:-istanbul}" == "qbft" ]; then
GENESIS_FILE="/examples/qbft-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_ARGS_qbft="--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 \
--rpccorsdomain "*" \
--rpcvhosts "*" \
--rpcaddr 0.0.0.0 \
--rpcport 8545 \
--rpcapi admin,eth,debug,miner,net,shh,txpool,personal,web3,quorum,$${CONSENSUS_RPC_API} \
--port 21000 \
--unlock 0 \
--allow-insecure-unlock \
--nousb \
--password /examples/passwords.txt \
${QUORUM_GETH_ARGS:-} $${GETH_ARGS_${QUORUM_CONSENSUS:-istanbul}}
x-tx-manager-def:
&tx-manager-def
image: "${QUORUM_TX_MANAGER_DOCKER_IMAGE:-quorumengineering/tessera:21.7.2}"
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
- |
if [ "$${PRIVATE_CONFIG}" == "ignore" ]; then
/bin/true
exit 0
fi
DDIR=/qdata/tm
rm -rf $${DDIR}
mkdir -p $${DDIR}
DOCKER_IMAGE="${QUORUM_TX_MANAGER_DOCKER_IMAGE:-quorumengineering/tessera:21.7}"
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
if [ -f "/tessera/tessera-app.jar" ]; then
TESSERA_VERSION=$$(unzip -p /tessera/tessera-app.jar META-INF/MANIFEST.MF | grep Tessera-Version | cut -d" " -f2)
else
TESSERA_VERSION=$$(/tessera/bin/tessera version)
fi
echo "Tessera version: $${TESSERA_VERSION}"
# sorting versions to target correct configuration
V08=$$(echo -e "0.8\n$${TESSERA_VERSION}" | sort -n -r -t '.' -k 1,1 -k 2,2 | head -n1)
V09AndAbove=$$(echo -e "0.9\n$${TESSERA_VERSION}" | sort -n -r -t '.' -k 1,1 -k 2,2 | head -n1)
TESSERA_CONFIG_TYPE="-09"
case "$${TESSERA_VERSION}" in
"$${V09AndAbove}")
TESSERA_CONFIG_TYPE="-09"
;;
esac
echo Config type $${TESSERA_CONFIG_TYPE}
#generating the two config flavors
cat <<EOF > $${DDIR}/tessera-config-09.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,
"serverAddress": "http://$$(hostname -i):9080",
"communicationType" : "REST"
},
{
"app":"Q2T",
"enabled": true,
"serverAddress": "unix:$${DDIR}/tm.ipc",
"communicationType" : "REST"
},
{
"app":"P2P",
"enabled": true,
"serverAddress": "http://$$(hostname -i):9000",
"sslConfig": {
"tls": "OFF"
},
"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
cat $${DDIR}/tessera-config$${TESSERA_CONFIG_TYPE}.json
if [ -f "/tessera/tessera-app.jar" ]; then
java -Xms128M -Xmx128M -jar /tessera/tessera-app.jar -configfile $${DDIR}/tessera-config$${TESSERA_CONFIG_TYPE}.json
else
export JAVA_OPTS="-Xms128M -Xmx128M"
/tessera/bin/tessera -configfile $${DDIR}/tessera-config$${TESSERA_CONFIG_TYPE}.json
fi
;;
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
x-cakeshop-def:
&cakeshop-def
image: "${CAKESHOP_DOCKER_IMAGE:-quorumengineering/cakeshop:0.12.1}"
expose:
- "8999"
restart: "no"
healthcheck:
test: ["CMD", "wget", "--spider", "--proxy=off", "http://localhost:8999/actuator/health"]
interval: 5s
timeout: 5s
retries: 20
start_period: 5s
entrypoint:
- /bin/sh
- -c
- |
DDIR=/qdata/cakeshop/local
rm -rf $${DDIR}
mkdir -p $${DDIR}
cp /examples/cakeshop/application.properties.template $${DDIR}/application.properties
cp /examples/cakeshop/7nodes_docker.json $${DDIR}/7nodes.json
java -Xms128M -Xmx128M -Dspring.config.additional-location=file:/qdata/cakeshop/local/ -Dcakeshop.config.dir=/qdata/cakeshop -jar /cakeshop/cakeshop.war
;;
services:
node1:
<< : *quorum-def
hostname: node1
ports:
- "22000:8545"
volumes:
- vol1:/qdata
- ./examples/7nodes:/examples:ro
depends_on:
- txmanager1
environment:
- PRIVATE_CONFIG=${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
ports:
- "9081:9080"
volumes:
- vol1:/qdata
- ./examples/7nodes:/examples:ro
networks:
quorum-examples-net:
ipv4_address: 172.16.239.101
environment:
- PRIVATE_CONFIG=${PRIVATE_CONFIG:-/qdata/tm/tm.ipc}
- NODE_ID=1
node2:
<< : *quorum-def
hostname: node2
ports:
- "22001:8545"
volumes:
- vol2:/qdata
- ./examples/7nodes:/examples:ro
depends_on:
- txmanager2
environment:
- PRIVATE_CONFIG=${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
ports:
- "9082:9080"
volumes:
- vol2:/qdata
- ./examples/7nodes:/examples:ro
networks:
quorum-examples-net:
ipv4_address: 172.16.239.102
environment:
- PRIVATE_CONFIG=${PRIVATE_CONFIG:-/qdata/tm/tm.ipc}
- NODE_ID=2
node3:
<< : *quorum-def
hostname: node3
ports:
- "22002:8545"
volumes:
- vol3:/qdata
- ./examples/7nodes:/examples:ro
depends_on:
- txmanager3
environment:
- PRIVATE_CONFIG=${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
ports:
- "9083:9080"
volumes:
- vol3:/qdata
- ./examples/7nodes:/examples:ro
networks:
quorum-examples-net:
ipv4_address: 172.16.239.103
environment:
- PRIVATE_CONFIG=${PRIVATE_CONFIG:-/qdata/tm/tm.ipc}
- NODE_ID=3
node4:
<< : *quorum-def
hostname: node4
ports:
- "22003:8545"
volumes:
- vol4:/qdata
- ./examples/7nodes:/examples:ro
depends_on:
- txmanager4
environment:
- PRIVATE_CONFIG=${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
ports:
- "9084:9080"
volumes:
- vol4:/qdata
- ./examples/7nodes:/examples:ro
networks:
quorum-examples-net:
ipv4_address: 172.16.239.104
environment:
- PRIVATE_CONFIG=${PRIVATE_CONFIG:-/qdata/tm/tm.ipc}
- NODE_ID=4
node5:
<< : *quorum-def
hostname: node5
ports:
- "22004:8545"
volumes:
- vol5:/qdata
- ./examples/7nodes:/examples:ro
depends_on:
- txmanager5
environment:
- PRIVATE_CONFIG=${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
ports:
- "9085:9080"
volumes:
- vol5:/qdata
- ./examples/7nodes:/examples:ro
networks:
quorum-examples-net:
ipv4_address: 172.16.239.105
environment:
- PRIVATE_CONFIG=${PRIVATE_CONFIG:-/qdata/tm/tm.ipc}
- NODE_ID=5
node6:
<< : *quorum-def
hostname: node6
ports:
- "22005:8545"
volumes:
- vol6:/qdata
- ./examples/7nodes:/examples:ro
depends_on:
- txmanager6
environment:
- PRIVATE_CONFIG=${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
ports:
- "9086:9080"
volumes:
- vol6:/qdata
- ./examples/7nodes:/examples:ro
networks:
quorum-examples-net:
ipv4_address: 172.16.239.106
environment:
- PRIVATE_CONFIG=${PRIVATE_CONFIG:-/qdata/tm/tm.ipc}
- NODE_ID=6
node7:
<< : *quorum-def
hostname: node7
ports:
- "22006:8545"
volumes:
- vol7:/qdata
- ./examples/7nodes:/examples:ro
depends_on:
- txmanager7
environment:
- PRIVATE_CONFIG=${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
ports:
- "9087:9080"
volumes:
- vol7:/qdata
- ./examples/7nodes:/examples:ro
networks:
quorum-examples-net:
ipv4_address: 172.16.239.107
environment:
- PRIVATE_CONFIG=${PRIVATE_CONFIG:-/qdata/tm/tm.ipc}
- NODE_ID=7
cakeshop:
<< : *cakeshop-def
hostname: cakeshop
ports:
- "8999:8999"
volumes:
- cakeshopvol:/qdata
- ./examples/7nodes:/examples:ro
networks:
quorum-examples-net:
ipv4_address: 172.16.239.186
networks:
quorum-examples-net:
name: quorum-examples-net
driver: bridge
ipam:
driver: default
config:
- subnet: 172.16.239.0/24
volumes:
"vol1":
"vol2":
"vol3":
"vol4":
"vol5":
"vol6":
"vol7":
"cakeshopvol":