Reputation: 31
docker pull hyperledger/fabric-peer is throwing error.
When I tried to setup docker locally and "docker-compose up" not up and runnning.
Please suggest.
Thanks in advance.
Upvotes: 3
Views: 1641
Reputation: 187
You can go and grab the version that suits you from here: https://store.docker.com/community/images/hyperledger/fabric-peer/tags
After that run this command
docker pull hyperledger/fabric-peer:your_version
Upvotes: 1
Reputation: 143
I had to download the platform specific binaries.
curl -sSL https://raw.githubusercontent.com/hyperledger/fabric/master/scripts/bootstrap-1.0.1.sh | bash
This will pull a bunch of images, but it worked for me.
Upvotes: 0