I am trying to start up network using following command
./network_setup.sh up channel
After running this command I am receiving this errro
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