Error building images: Tag latest not found in repository docker.io/hyperledger/fabric-baseimage

后端 未结 2 978
野性不改
野性不改 2021-01-26 02:57

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

相关标签:
2条回答
  • 2021-01-26 03:06
    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
    0 讨论(0)
  • 2021-01-26 03:23

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

    0 讨论(0)
提交回复
热议问题