Delete Repository
Once you have created a repository using the Docker URIs and performed all operations you can delete the repository completely. Since Docker Registry V2 API does not allow to delete the entire repository, you can use IONOS Container Registry's API call for deleting the repository.
To delete your repository, the registryId and repository name for the repository to be deleted must be provided.
Delete the repository using the following
curl
command:Note: The sample
requestID
is a8fb592e4-494c-11ed-b878-0242ac120002 and the sample registry_name
is testcurl --location \
--request DELETE 'https://api.ionos.com/registries/8fb592e4-494c-11ed-b878-0242ac120002/repositories/test' \
--header 'Authorization: Basic am9obkBleGFtcGxlLmNvbTphYmMxMjM=' \
--data-raw ''
Field | Type | Description | Example |
---|---|---|---|
registryId | string | The ID of the registry to return. This is required. | 8fb592e4-494c-11ed-b878-0242ac120002 |
repository_name | string | The name of the registry. It must be unique within the folder. | test |
204 - No Content
The request was successfully fulfilled and there is no content in the body.
Last modified 3mo ago