Describe the bug
Building images with docker buildx --platform linux/amd64 and pushing to ACR then purging with --untagged breaks every such an image in the ACR and results in manifest unknown upon docker pull
To Reproduce
Steps to reproduce the behavior:
Build images with docker buildx --platform linux/amd64
Push to ACR
Schedule a purge with e.g. mcr.microsoft.com/acr/acr-cli:0.5 purge --ago 0d --filter 'x:x' --untagged
Execute docker pull on the image
Observe an error: Pulling from... not found: manifest unknown: manifest sha256:... is not found
Expected behaviorpurge with --untagged does not break tagged images.
Describe the bug Building images with
docker buildx --platform linux/amd64
and pushing to ACR then purging with--untagged
breaks every such an image in the ACR and results inmanifest unknown
upondocker pull
To Reproduce Steps to reproduce the behavior:
docker buildx --platform linux/amd64
mcr.microsoft.com/acr/acr-cli:0.5 purge --ago 0d --filter 'x:x' --untagged
docker pull
on the imagePulling from
...not found: manifest unknown: manifest sha256:... is not found
Expected behavior
purge
with--untagged
does not break tagged images.Additional context
131