Anil Nayak
Anil Nayak

Reputation: 1

Issue bringing up Hyperledger Fabric "Building Your First Network" sample

while I am running this command from my terminal

sudo ./byfn.sh  -m up 

I am getting below error:

Starting with channel 'my-channel' and CLI timeout of '10' seconds and CLI delay of '3' seconds Continue (y/n)? y proceeding ... Pulling orderer.example.com (hyper-ledger/fabric-orderer:latest)... ERROR: manifest for hyper-ledger/fabric-orderer:latest not found ERROR !!!! Unable to start network Error response from daemon: No such container: cli

How do I resolve this please?

Upvotes: 0

Views: 354

Answers (3)

Ashishkel
Ashishkel

Reputation: 961

Ideally, you should download the platform binaries and images as given in the Fabric documentation - Install Binaries and Docker Images Or You should make sure that your terminal has internet access & not behind any corporate proxy. Whatever is needed would be pulled by docker anyway. I am guessing that hyperledger/fabric-baseos image is not pulled by the script above.

If you don't find hyperledger/fabric-baseos:latest,then either docker pull hyperledger/fabric-baseos:tag depends on the fabric version on your own

Or, the chaincode instantiate process in byfn- end to end CLI would do it for you.

Upvotes: 0

YohjiNakamoto
YohjiNakamoto

Reputation: 393

I had the same issue. Turns out it was just a broken docker-compose installation. I simply figured it out typing docker-compose in my terminal, and I ran into ImportError: No module named ssl_match_hostname With a clean docker compose install, I got it to work.

Upvotes: 0

Artem Barger
Artem Barger

Reputation: 41222

You need to download platform specific binaries, please see how to do it here in the following tutorial. Please also make sure you have all per-requisites, you can find more about what needed here.

Upvotes: 1

Related Questions