Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error response from daemon: manifest for ibmblockchain/fabric-peer:latest not found

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.

like image 935
jitendra korde Avatar asked Aug 30 '17 05:08

jitendra korde


People also ask

What is peer node in Blockchain?

A fundamental element of a Hyperledger Fabric blockchain network is the set of peer nodes (or, simply, peers). Peers are fundamental because they manage ledgers and smart contracts. Starting in Hyperledger Fabric v2. 4, peers also manage transaction proposals and endorsements by running the Fabric Gateway service.

What is ordering service in Hyperledger fabric?

In a Hyperledger Fabric network, a node or collection of nodes together form what's called an “ordering service”, which literally orders transactions into blocks, which peers will then validate and commit to their ledgers.

What is Hyperledger fabric used for?

Hyperledger Fabric networks can improve supply chain processes by increasing transparency and traceability of transactions within the network. On a Fabric network, companies with access to the ledger can view the same immutable data, which enforces accountability and reduces the risk for counterfeiting.


1 Answers

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 
like image 87
Tarun Lalwani Avatar answered Nov 03 '22 19:11

Tarun Lalwani