问题
I'm trying to run the docker pull ibmblockchain/fabric-peer
command, but I'm getting this error message:
Error response from daemon: manifest for ibmblockchain/fabric-peer:latest not found.
Is there any other way to pull this image ? Also trying to pull another images but get same error message.
回答1:
As you can see on below link the tag is not available
https://hub.docker.com/r/ibmblockchain/fabric-peer/tags/
You should use 1.0.1
docker pull ibmblockchain/fabric-peer:1.0.1
回答2:
i was also facing the same issue. Tarun's answer is correct. All you have to do is
open docker-compose.yml
file and add hyperledger/fabric-peer:x86_64-1.0.2
or whichever you are pulling.
close the file and run the docker-compose up
command.
回答3:
This means the image that you are trying to pull does not exist, check the image tag or the URL that you are specifying.
回答4:
I got the same error message when I tried to pull the image from hub.docker.com. Not this image but another. This error was related with the tag version. In my case, I push the V0.6
version and I was trying pull v0.6
version. Note that I used the upper case to write the "V" and I was trying the lower case "v". So, the tag image is really not found.
I hope this help anyone.
来源:https://stackoverflow.com/questions/45952630/error-response-from-daemon-manifest-for-ibmblockchain-fabric-peerlatest-not-fo