@@ -14,14 +14,14 @@ services:
14
14
ccenv_snapshot :
15
15
container_name : ccenv_snapshot
16
16
build : ./ccenv
17
- image : hyperledger/fabric-ccenv:x86_64-0.7.0-snapshot-3ee280e
17
+ image : hyperledger/fabric-ccenv:x86_64-0.7.0-snapshot-c7b3fe0
18
18
volumes :
19
19
- ./ccenv:/opt/gopath/src/github.com/hyperledger/fabric/orderer/ccenv
20
20
21
21
ca :
22
- image : rameshthoomu /fabric-ca-x86_64 :x86_64-0.7.0-snapshot-f5291e7
22
+ image : sfhackfest22017 /fabric-ca:x86_64-0.7.0-snapshot-6294c57
23
23
ports :
24
- - " 7054 :7054"
24
+ - 8054 :7054
25
25
environment :
26
26
- CA_CERTIFICATE=peerOrg0_cert.pem
27
27
- CA_KEY_CERTIFICATE=peerOrg0_pk.pem
@@ -33,7 +33,7 @@ services:
33
33
34
34
orderer :
35
35
container_name : orderer
36
- image : rameshthoomu /fabric-orderer-x86_64 :x86_64-0.7.0-snapshot-3ee280e
36
+ image : sfhackfest22017 /fabric-orderer:x86_64-0.7.0-snapshot-c7b3fe0
37
37
environment :
38
38
- ORDERER_GENERAL_LEDGERTYPE=ram
39
39
- ORDERER_GENERAL_BATCHTIMEOUT=10s
@@ -49,13 +49,13 @@ services:
49
49
- ./tmp/orderer:/etc/hyperledger/fabric/orderer
50
50
command : orderer
51
51
ports :
52
- - 7050 :7050
52
+ - 8050 :7050
53
53
networks :
54
54
- bridge
55
55
56
56
peer0 :
57
57
container_name : peer0
58
- image : rameshthoomu /fabric-peer-x86_64 :x86_64-0.7.0-snapshot-3ee280e
58
+ image : sfhackfest22017 /fabric-peer:x86_64-0.7.0-snapshot-c7b3fe0
59
59
environment :
60
60
- CORE_PEER_ADDRESSAUTODETECT=true
61
61
- CORE_VM_ENDPOINT=unix:///host/var/run/docker.sock
@@ -67,11 +67,12 @@ services:
67
67
- CORE_PEER_PROFILE_ENABLED=true
68
68
- CORE_PEER_COMMITTER_LEDGER_ORDERER=orderer:7050
69
69
- CORE_PEER_GOSSIP_ORGLEADER=true
70
+ - CORE_PEER_GOSSIP_IGNORESECURITY=true
70
71
71
72
working_dir : /opt/gopath/src/github.com/hyperledger/fabric/peer
72
73
ports :
73
- - 7051 :7051
74
- - 7053 :7053
74
+ - 8051 :7051
75
+ - 8053 :7053
75
76
links :
76
77
- orderer:orderer
77
78
volumes :
@@ -82,7 +83,7 @@ services:
82
83
83
84
peer1 :
84
85
container_name : peer1
85
- image : rameshthoomu /fabric-peer-x86_64 :x86_64-0.7.0-snapshot-3ee280e
86
+ image : sfhackfest22017 /fabric-peer:x86_64-0.7.0-snapshot-c7b3fe0
86
87
environment :
87
88
- CORE_PEER_ADDRESSAUTODETECT=true
88
89
- CORE_VM_ENDPOINT=unix:///host/var/run/docker.sock
@@ -94,9 +95,10 @@ services:
94
95
- CORE_PEER_PROFILE_ENABLED=true
95
96
- CORE_PEER_COMMITTER_LEDGER_ORDERER=orderer:7050
96
97
- CORE_PEER_GOSSIP_ORGLEADER=true
98
+ - CORE_PEER_GOSSIP_IGNORESECURITY=true
97
99
working_dir : /opt/gopath/src/github.com/hyperledger/fabric/peer
98
100
ports :
99
- - 8051 :7051
101
+ - 8055 :7051
100
102
command : peer node start --peer-defaultchain=false
101
103
links :
102
104
- orderer:orderer
@@ -109,7 +111,7 @@ services:
109
111
110
112
peer2 :
111
113
container_name : peer2
112
- image : rameshthoomu /fabric-peer-x86_64 :x86_64-0.7.0-snapshot-3ee280e
114
+ image : sfhackfest22017 /fabric-peer:x86_64-0.7.0-snapshot-c7b3fe0
113
115
environment :
114
116
- CORE_PEER_ADDRESSAUTODETECT=true
115
117
- CORE_VM_ENDPOINT=unix:///host/var/run/docker.sock
@@ -121,10 +123,11 @@ services:
121
123
- CORE_PEER_PROFILE_ENABLED=true
122
124
- CORE_PEER_COMMITTER_LEDGER_ORDERER=orderer:7050
123
125
- CORE_PEER_GOSSIP_ORGLEADER=true
126
+ - CORE_PEER_GOSSIP_IGNORESECURITY=true
124
127
working_dir : /opt/gopath/src/github.com/hyperledger/fabric/peer
125
128
126
129
ports :
127
- - 9051 :7051
130
+ - 8056 :7051
128
131
command : peer node start --peer-defaultchain=false
129
132
links :
130
133
- orderer:orderer
@@ -138,7 +141,7 @@ services:
138
141
139
142
cli :
140
143
container_name : cli
141
- image : rameshthoomu /fabric-peer-x86_64 :x86_64-0.7.0-snapshot-3ee280e
144
+ image : sfhackfest22017 /fabric-peer:x86_64-0.7.0-snapshot-c7b3fe0
142
145
tty : true
143
146
environment :
144
147
- GOPATH=/opt/gopath
@@ -152,7 +155,7 @@ services:
152
155
- CORE_PEER_ADDRESS=peer0:7051
153
156
working_dir : /opt/gopath/src/github.com/hyperledger/fabric/peer
154
157
command : sh -c './channel_test.sh; sleep 10000'
155
- # command: /bin/sh
158
+ # command: /bin/sh
156
159
links :
157
160
- orderer:orderer
158
161
- peer0:peer0
0 commit comments