Docker - Image pull , Image push and retag By Anandkumar - July 26, 2021 Get link Facebook Twitter Pinterest Email Other Apps 1) Pull an image from a registry docker pull myimage:1.0 2) Retag a local image with a new image name and tag docker tag myimage:1.0 myrepo/myimage:2.0 3) Push an image to a registry docker push myrepo/myimage:2.0 Comments
Comments
Post a Comment