Skip to content

Push multiarch image to another registry

Use docker buildx imagetools create to create a manifest that points to an existing multiarch image and push it to another registry (no rebuild, no re-pull of layers).

Terminal window
docker buildx imagetools create \
-t ${{ TARGET }} \
${{ SOURCE }}

Requires docker buildx and login to both source and target registries.