What happens if i push mutliple docker :latest tags to the container registry?
Say I have this as part of a gitlab build pipeline: - docker build -t ${CI_REGISTRY_IMAGE}/myimage:latest -t ${CI_REGISTRY_IMAGE}/myimage:$CI_VERSION . - docker push --all-tags ${CI_REGISTRY_IMAGE}/myimage Now I don't really understand what is happening here in terms of tagging. Will the latest-tag…