mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
[FAB-6895] chaincode mounting issue
Chaincode mount path has been corrected with this fix so that artifacts (ex. mychannel.block etc.,) won't be visible on the host machine and the cli container upon restart. Change-Id: I9b59c80d1cac3034d9cd7d9e19b2931df8b3988e Signed-off-by: ratnakar <asara.ratnakar@gmail.com>
This commit is contained in:
parent
7c23985303
commit
a7be462ab4
2 changed files with 3 additions and 3 deletions
|
|
@ -70,7 +70,7 @@ services:
|
|||
command: /bin/bash -c './scripts/script.sh ${CHANNEL_NAME} ${DELAY} ${LANG}; sleep $TIMEOUT'
|
||||
volumes:
|
||||
- /var/run/:/host/var/run/
|
||||
- ./../chaincode/:/opt/gopath/src/github.com/
|
||||
- ./../chaincode/:/opt/gopath/src/github.com/chaincode
|
||||
- ./crypto-config:/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/
|
||||
- ./scripts:/opt/gopath/src/github.com/hyperledger/fabric/peer/scripts/
|
||||
- ./channel-artifacts:/opt/gopath/src/github.com/hyperledger/fabric/peer/channel-artifacts
|
||||
|
|
|
|||
|
|
@ -20,9 +20,9 @@ COUNTER=1
|
|||
MAX_RETRY=5
|
||||
ORDERER_CA=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem
|
||||
|
||||
CC_SRC_PATH="github.com/chaincode_example02/go/"
|
||||
CC_SRC_PATH="github.com/chaincode/chaincode_example02/go/"
|
||||
if [ "$LANGUAGE" = "node" ]; then
|
||||
CC_SRC_PATH="/opt/gopath/src/github.com/chaincode_example02/node/"
|
||||
CC_SRC_PATH="/opt/gopath/src/github.com/chaincode/chaincode_example02/node/"
|
||||
fi
|
||||
|
||||
echo "Channel name : "$CHANNEL_NAME
|
||||
|
|
|
|||
Loading…
Reference in a new issue