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

前端 未结 6 2174
离开以前
离开以前 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:23

    I was having the same problem and what I did was to go to the console and list all the docker images I had in my computer with:

    docker images --all
    

    And I got a list like this:

    REPOSITORY                              TAG                 IMAGE ID            CREATED             SIZE
    dev-peer0.org1.example.com-fabcar-1.0   latest              2b951138a408        10 hours ago        173MB
                                                    0dc88d79f8bf        10 hours ago        173MB
                                                    94c8e5b3db58        10 hours ago        173MB
    hyperledger/fabric-ca                   x86_64-1.1.0        72617b4fa9b4        6 weeks ago         299MB
    hyperledger/fabric-tools                latest              b7bfddf508bc        6 weeks ago         1.46GB
    hyperledger/fabric-tools                x86_64-1.1.0        b7bfddf508bc        6 weeks ago         1.46GB
    

    So, given that the version I know I downloaded was 1.1.0, I went to the docker-compose.yml file and looked for all the lines that started with image: and added at the end the same tag that the images had. For example:

    image:hyperledger/fabric-ca
    

    was updated to

    image: hyperledger/fabric-ca:x86_64-1.0.0
    

提交回复
热议问题