Hyperledger fabric Hyperledger结构本地版本和docker版本不同步

Hyperledger fabric Hyperledger结构本地版本和docker版本不同步,hyperledger-fabric,hyperledger,Hyperledger Fabric,Hyperledger,我正在尝试运行构建您的第一个网络示例。当我去的时候。/byfn.sh生成它工作。但是当我这样做的时候。/byfn.sh up它给了我一个警告: Local fabric binaries and docker images are out of sync. This may cause problems. 还有一个错误: got unexpected status: BAD_REQUEST -- error authorizing update: error validating Delta

我正在尝试运行构建您的第一个网络示例。当我去的时候。/byfn.sh生成它工作。但是当我这样做的时候。/byfn.sh up它给了我一个警告:

Local fabric binaries and docker images are out of  sync. This may cause problems.
还有一个错误:

got unexpected status: BAD_REQUEST -- error authorizing update: error validating DeltaSet: policy for [Group]  /Channel/Application not satisfied: Failed to reach implicit threshold of 1 sub-policies, required 1 remaining.
警告上方的版本是:

LOCAL_VERSION=1.3.0

DOCKER_IMAGE_VERSION=1.3.0-rc1
但我使用以下命令下载了结构:

curl -sSL https://raw.githubusercontent.com/hyperledger/fabric/master/scripts/bootstrap.sh | bash -s 1.3.0-rc1
(完整链接是因为我无法发布bit.ly链接) 应安装1.3.0-rc1作为本地版本。
有人知道为什么我的本地版本显示为1.3.0吗?

检查docker compose。yaml服务可能指向服务中的1.3.0-rc1,您可以指向1.3.0,只需在每个服务中设置图像

image: hyperledger/fabric-orderer:$ARCH-1.3.0
这是orderer服务的一个示例,您应该为所有人都这样做