Instantiation of Chaincode using Fabric Node SDK gives API error (404): manifest for hyperledger/fabric-ccenv:latest not found
原因
latest
tag for hyperledger/fabric-ccenv
does not exist anymore
latest标签不能用了
解决方案:
# 手动下载最新版
docker pull hyperledger/fabric-ccenv:2.1
# 加上最新版的标签
docker tag hyperledger/fabric-ccenv:2.1 hyperledger/fabric-ccenv:latest
# 重新执行之前的指令
https://stackoverflow.com/questions/62860545/instantiation-of-chaincode-using-fabric-node-sdk-gives-api-error-404-manifest/62862682#62862682