docker远程仓库镜像删除

Posted jxcool

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了docker远程仓库镜像删除相关的知识,希望对你有一定的参考价值。

1、 查看仓库中的镜像

curl -X GET http://registry.test.cn:5000/v2/_catalog |python -m json.tool

{ 
    "repositories": [
        "nginx",
        "grafana"
    ]
}

2、 查看某个镜像的标签列表

curl -X GET http://registry.test.cn:5000/v2/nginx/tags/list |python -m json.tool

{
    "name": "openshift3/grafana",
    "tags": [
        "v3.11.82",
        "latest"
    ]
}

3、 查看某个镜像的digest值

curl  -I -X GET http://registry.test.cn:5000/v2/grafana/manifests/v3.11.82

HTTP/1.1 200 OK
Content-Length: 5805
Content-Type: application/vnd.docker.distribution.manifest.v1+prettyjws
Docker-Content-Digest: sha256:2d6ff127dd79779c7a4c0e42975ddec4d7243019946e0a53084c8107a736f9e5
Docker-Distribution-Api-Version: registry/2.0
Etag: "sha256:2d6ff127dd79779c7a4c0e42975ddec4d7243019946e0a53084c8107a736f9e5"
Date: Wed, 04 Mar 2020 09:48:38 GMT

4、 删除某个镜像的某个版本

curl  -X DELETE http://registry.test.cn:5000/v2/grafana/manifests/v3.11.82
或者
curl  -X DELETE http://registry.test.cn:5000/v2/grafana/manifests/sha256:2d6ff127dd79779c7a4c0e42975ddec4d7243019946e0a53084c8107a736f9e5

{"errors":[{"code":"UNSUPPORTED","message":"The operation is unsupported."}]}

以上是关于docker远程仓库镜像删除的主要内容,如果未能解决你的问题,请参考以下文章

docker将本地打包好的镜像推到远程

Docker push镜像到远程仓库

Docker 将镜像推送到远程仓库

阿里云搭建docker私有镜像仓库与SpringBoot项目推送远程镜像仓库

003-docker的操作命令-远程镜像仓库命令,本地镜像管理命令

[云原生专题-8]:容器 - docker远程镜像仓库管理上传下载存储镜像与常见常用知名镜像