Manage your registry
Whilst the ctr.dev
API is OCI spec compliant, Hiphops provides additional endpoints not covered within that spec. These bring quality of life improvements for managing a container registry.
The actions are listed below, and are additional to the standard functionality expected of a Docker container registry.
Listing all repos
- Dashboard under
Registry > Browse your registry
. - API with GET /api/v1/registry/{project_id}/repos
Listing repo images
- Dashboard under
Registry > Browse your registry
. - API with GET /api/v1/registry/{project_id}/repos/{repo}/images
Listing image info & tags
- Dashboard under
Registry > Browse your registry
. - API with GET /api/v1/registry/{project_id}/repos/{repo}/images/{imageandtag}
Listing all files and their sizes
- Dashboard under
Registry > Browse your registry
. - API with GET /api/v1/registry/{project_id}/files
Deleting an image or tag
- Dashboard under
Registry > Browse your registry > (Select) Delete
. - API with DELETE /api/v1/registry/{project_id}/repos/{repo}/images/{imageandtag}