ERROR: manifest for hyperledger/fabric-orderer:latest not found

前端 未结 6 2170
离开以前
离开以前 2021-02-08 04:19

I am trying to start up network using following command

./network_setup.sh up  channel

After running this command I am receiving this errro

6条回答
  •  名媛妹妹
    2021-02-08 05:18

    You cannot just run ./network_setup.sh. Before you run ./netork_setup.sh, to generate or to docker pull images is necessary.

    sudo rm -Rf $GOPATH/src/github.com/hyperledger 
    mkdir -pv $GOPATH/src/github.com/hyperledger 
    cd $GOPATH/src/github.com/hyperledger 
    git clone http://gerrit.hyperledger.org/r/fabric 
    git clone https://github.com/hyperledger/fabric-ca
    
    cd $GOPATH/src/github.com/hyperledger/fabric 
    git branch --all 
    git fetch
    make clean
    make dist-clean
    make configtxgen
    make docker
    make peer-docker
    make orderer-docker
    make couchdb
    
    cd $GOPATH/src/github.com/hyperledger/fabric-ca
    git branch --all
    git fetch 
    make clean
    make dist-clean
    make docker 
    

    To generate images by yourself, please refer to: https://github.com/hyperledger/fabric/blob/master/examples/e2e_cli/end-to-end.rst

    To docker pull existing images, please refer to: https://github.com/hyperledger/fabric/tree/master/examples/dchackfest/samples/e2e

提交回复
热议问题