Yea they didn't make this easy and it's still not perfect, but the v2 registry API now has the ability to delete images.
Can I simply and savely just remove the folder v2/repositories/IMAGE_NAME/_manifests/tags/VERSION
The actual image data is stored in the blobs directory on disk but they are shared between different manifests so it's not safe to just purge that directory out unless you've considered all images that may share the blobs.
Here is the method to delete an image using the v2 docker API:
Firstly, your registry has to have DELETE enabled.
Either set the env var:
REGISTRY_STORAGE_DELETE_ENABLED: "true"
or in the config.yml have to set
storage:
delete:
enabled: true
Next, run the deletion via API calls (You can easily test via Postman or just using curl/etc)
NOTE: In the below calls, add "Accept: application/vnd.docker.distribution.manifest.v2+json"
to the HTTP Header
Gather image digest:
HEAD https://myprivateregistry:5001/v2/<image_name>/manifests/<image_tag>
This call returns the header key Docker-Content-Digest
with a value like this: sha256:b57z31xyz0f616e65f106b424f4ef29185fbd80833255d79dabc73b8eb873bd
Using that value from step 2, run the DELETE
http call:
DELETE https://myprivateregistry:5001/v2/<image_name>/manifests/sha256:b57z31xyz0f616e65f106b424f4ef29185fbd80833255d79dabc73b8eb873bd
API returns 202 Accepted
Run garbage collection manually if you don't want to wait for its next scheduled run: registry garbage-collect /etc/docker/registry/config.yml
Example if running registry as a container: docker exec -t registry-test ./bin/registry garbage-collect /etc/docker/registry/config.yml
Garbage collector deletes the associated blobs and manifests from disk for you.
At this point the image:tag is completely deleted from disk and is purged from the registry. The blobs are deleted and you'll see the manifests gone from v2/repositories/<image_name>/_manifests
NOTE: If this was the last image in your repo, you still have to manually delete the repo listing from disk (v2/repositories/<image_name>/_layers
) - however this is just metadata. The actual image data has already been removed. I believe this might be a bug in the garbage collector. I have a question about it here: Docker Private Registry - Deleted all images, but still showing in catalog
MORE DETAILS:
https://docs.docker.com/registry/spec/api/#deleting-an-image
https://jsosic.wordpress.com/2017/01/23/deleting-images-from-docker-registry/