Am still in process of attempting to successfully remove images from registry, so would like to know if registry is going to accept and add a docker image with specific tag that is already on registry.
say I pushed myImage:myTag to the registry and it's up there. Now say I attempt to push that same myImage:myTag (same digest/sha#) to the registry. What will happen on the registry? will a duplicate appear or will it ignore the push because that same specific docker image is already there?
The
push
will be accepted by the registry and the new image will be available under the tag (unless both the old image and the new are the same).But it will not be simply overwritten. While doing the push,
docker
compares the layers one by one until there is a difference. The layers already existing will not be uploaded but they will be reused from the former image.Example trace, when I repushed the same image:
The images are generally stored (and uploaded or downloaded) by individual layers. This also explains, that deleting an image of some tag actually doesn't delete any image, just untags the pointer (unless some sort of GC is forced).