当我运行hurl install“name-of-chain”节点时,我收到一个错误,说“无法生成特定于平台的docker构建:无法拉出hyperledger/fabric-ccenv:latest: API error (404)”,我试图在core.yaml文件中更改它,但仍然存在同样的问题
发布于 2020-09-07 22:40:55
由于有两个hyperledger fabric版本,latest标签已被弃用,因此latest标签具有误导性。您可以在对等环境变量中设置CORE_CHAINCODE_BUILDER=hyperledger/fabric-ccenv:Version_Info,并将version_info设置为您的特定版本
fabric团队在v1.4.8中修复了此问题,下面是github change logs中的代码片段
This change ensures that v1.4.x peers using the default
configuration will pull the latest v1.4 fabric-ccenv image from dockerhub to build chaincode,
if the local fabric-ccenv image is not found链接:https://github.com/hyperledger/fabric/releases/tag/v1.4.8
https://stackoverflow.com/questions/63773688
复制相似问题