Error building images: Tag latest not found in rep

2019-03-03 19:16发布

I deployed a chaincode to a network of peers. It was unsuccessful. I looked at a peer's log and saw an error message: Error building images: Tag latest not found in repository docker.io/hyperledger/fabric-baseimage.

2条回答
贼婆χ
2楼-- · 2019-03-03 19:42

you should run 'make images' to create hyperledger/fabric-baseimage:latest.

查看更多
三岁会撩人
3楼-- · 2019-03-03 19:46
  1. Pull a specific base image from https://hub.docker.com/r/hyperledger/fabric-baseimage/ using docker pull hyperledger/fabric-baseimage:<tag name>
  2. Check the image id of the downloaded image using docker images
  3. Tag this image as latest docker tag <imageID> latest
查看更多
登录 后发表回答