Retag and Push an Image in Local Quay
Pull an existing container image from Local Quay, retag it for a new repository path or version, and push the updated tag back to the registry.
π‘ Quick Answer: Pull the source image from Local Quay, retag to the new repository path, then push the new tag. Use
--tls-verify=falseonly when your internal cert trust is not configured yet.
Use this workflow to duplicate or promote images between repositories in the same Local Quay instance.
1) Pull the Source Image
podman pull quay.internal.example.com/org-a/source-image:latestFor internal/self-signed cert environments:
podman pull --tls-verify=false quay.internal.example.com/org-a/source-image:latest2) Retag to the Target Repository
podman tag \
quay.internal.example.com/org-a/source-image:latest \
quay.internal.example.com/org-b/target-image:2.26.6-rhel9.63) Push the New Tag
podman push quay.internal.example.com/org-b/target-image:2.26.6-rhel9.6If trust is not configured yet:
podman push --tls-verify=false \
quay.internal.example.com/org-b/target-image:2.26.6-rhel9.6One-Shot Sequence
podman pull quay.internal.example.com/org-a/source-image:latest
podman tag quay.internal.example.com/org-a/source-image:latest quay.internal.example.com/org-b/target-image:2.26.6-rhel9.6
podman push quay.internal.example.com/org-b/target-image:2.26.6-rhel9.6Operational Tips
- Keep immutable version tags (for example,
2.26.6-rhel9.6) for traceability. - Avoid overwriting
latestin production promotion flows. - Validate repository retention and access policies before publishing.
Related Recipes

Recommended
Kubernetes Recipes β The Complete Book100+ production-ready patterns with detailed explanations, best practices, and copy-paste YAML. Everything in one place.
Get the Book βLearn by Doing
CopyPasteLearn β Hands-on Cloud & DevOps CoursesMaster Kubernetes, Ansible, Terraform, and MLOps with interactive, copy-paste-run lessons. Start free.
Browse Courses βπ Deepen Your Skills β Hands-on Courses
Courses by CopyPasteLearn.com β Learn IT by Doing
