Imagine, I have docker image based on Dockerfile, I will tag & push it into docker registry
Over time, I change Dockerfile (add/change new instructions, ...)
Now, I will tag new image again with the same tag I used in the first place and push it into docker registry
- How does docker registry react to new layers?
- How does docker registry react to changed layers?
- Will it overwrite existing image with the latest version?
- Should I use different tag to make sure I have correct new image in place?