File tree 3 files changed +45
-0
lines changed
3 files changed +45
-0
lines changed Original file line number Diff line number Diff line change @@ -381,10 +381,20 @@ Profiles:
381
381
Port : 7050
382
382
ClientTLSCert : crypto-config/ordererOrganizations/example.com/orderers/orderer3.example.com/tls/server.crt
383
383
ServerTLSCert : crypto-config/ordererOrganizations/example.com/orderers/orderer3.example.com/tls/server.crt
384
+ - Host : orderer4.example.com
385
+ Port : 7050
386
+ ClientTLSCert : crypto-config/ordererOrganizations/example.com/orderers/orderer4.example.com/tls/server.crt
387
+ ServerTLSCert : crypto-config/ordererOrganizations/example.com/orderers/orderer4.example.com/tls/server.crt
388
+ - Host : orderer5.example.com
389
+ Port : 7050
390
+ ClientTLSCert : crypto-config/ordererOrganizations/example.com/orderers/orderer5.example.com/tls/server.crt
391
+ ServerTLSCert : crypto-config/ordererOrganizations/example.com/orderers/orderer5.example.com/tls/server.crt
384
392
Addresses :
385
393
- orderer.example.com:7050
386
394
- orderer2.example.com:7050
387
395
- orderer3.example.com:7050
396
+ - orderer4.example.com:7050
397
+ - orderer5.example.com:7050
388
398
389
399
Organizations :
390
400
- *OrdererOrg
Original file line number Diff line number Diff line change @@ -19,6 +19,9 @@ OrdererOrgs:
19
19
- Hostname : orderer
20
20
- Hostname : orderer2
21
21
- Hostname : orderer3
22
+ - Hostname : orderer4
23
+ - Hostname : orderer5
24
+
22
25
# ---------------------------------------------------------------------------
23
26
# "PeerOrgs" - Definition of organizations managing peer nodes
24
27
# ---------------------------------------------------------------------------
Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ version: '2'
8
8
volumes :
9
9
orderer2.example.com :
10
10
orderer3.example.com :
11
+ orderer4.example.com :
12
+ orderer5.example.com :
11
13
12
14
networks :
13
15
byfn :
@@ -43,3 +45,33 @@ services:
43
45
- orderer3.example.com:/var/hyperledger/production/orderer
44
46
ports :
45
47
- 9050:7050
48
+
49
+ orderer4.example.com :
50
+ extends :
51
+ file : base/peer-base.yaml
52
+ service : orderer-base
53
+ container_name : orderer4.example.com
54
+ networks :
55
+ - byfn
56
+ volumes :
57
+ - ./channel-artifacts/genesis.block:/var/hyperledger/orderer/orderer.genesis.block
58
+ - ./crypto-config/ordererOrganizations/example.com/orderers/orderer4.example.com/msp:/var/hyperledger/orderer/msp
59
+ - ./crypto-config/ordererOrganizations/example.com/orderers/orderer4.example.com/tls/:/var/hyperledger/orderer/tls
60
+ - orderer4.example.com:/var/hyperledger/production/orderer
61
+ ports :
62
+ - 10050:7050
63
+
64
+ orderer5.example.com :
65
+ extends :
66
+ file : base/peer-base.yaml
67
+ service : orderer-base
68
+ container_name : orderer5.example.com
69
+ networks :
70
+ - byfn
71
+ volumes :
72
+ - ./channel-artifacts/genesis.block:/var/hyperledger/orderer/orderer.genesis.block
73
+ - ./crypto-config/ordererOrganizations/example.com/orderers/orderer5.example.com/msp:/var/hyperledger/orderer/msp
74
+ - ./crypto-config/ordererOrganizations/example.com/orderers/orderer5.example.com/tls/:/var/hyperledger/orderer/tls
75
+ - orderer5.example.com:/var/hyperledger/production/orderer
76
+ ports :
77
+ - 11050:7050
You can’t perform that action at this time.
0 commit comments