I just installed docker-registry offline and can use the following command
curl -X GET http://localhost:5000/v2/
to get the right result.
However, when I use
curl -X DELETE http://localhost:5000/v2/<name>/blobs/<digest>
to remove the layer, it fails, I get:
{"errors":[{"code":"UNSUPPORTED","message":"The operation is unsupported."}]}
I am using the default configuration from docker hub. And I studied the official configuration, but could not solve it.
How can i do this?
source
share