共计 1692 个字符,预计需要花费 5 分钟才能阅读完成。
Docker 私有仓库 v2 版本中的镜像,官方不建议删除,但是也提供了删除接口:
DELETE /v2/<name>/manifests/<reference>
Host: <registry host>
Authorization: <scheme> <token>
删除的原理就是把索引删掉,但磁盘上的数据是删不掉的。这是由于各个镜像之间的不同层共用的关系,可能导致删除一个镜像后其余的镜像也无法使用了。
用 Python 实现伪删除,代码如下:
#-*- coding:utf-8 -*-
#!/usr/bin/env python
”’
Created on 2016.10.8
@desc: delete images from repo
”’
import requests
repo_ip = “172.16.4.254”
repo_port = 5000
image_name = “oa”
image_tag = “20161012”
def deleteImagesFromRepo(repo_ip,repo_port,image_name,image_tag):
head = {‘Accept’: ‘application/vnd.docker.distribution.manifest.v2+json’}
reg = “http://” + repo_ip + “:” + str(repo_port) + “/v2/”
res = requests.get(reg + image_name + “/manifests/” + image_tag,headers=head,verify=False)
manifest = res.headers[‘Docker-Content-Digest’]
res2 = requests.delete(reg + image_name + “/manifests/”+manifest,verify=False)
if res2.status_code == 202:
print “delete %s success……”%(image_name+’:’+image_tag)
else:
print “delete %s fail……”%(image_name+’:’+image_tag)
deleteImagesFromRepo(repo_ip,repo_port,image_name,image_tag)
运行结果如下:
更多 Docker 相关教程见以下内容:
Docker 安装应用(CentOS 6.5_x64) http://www.linuxidc.com/Linux/2014-07/104595.htm
Ubuntu 14.04 安装 Docker http://www.linuxidc.com/linux/2014-08/105656.htm
Ubuntu 使用 VNC 运行基于 Docker 的桌面系统 http://www.linuxidc.com/Linux/2015-08/121170.htm
阿里云 CentOS 6.5 模板上安装 Docker http://www.linuxidc.com/Linux/2014-11/109107.htm
Ubuntu 15.04 下安装 Docker http://www.linuxidc.com/Linux/2015-07/120444.htm
在 Ubuntu Trusty 14.04 (LTS) (64-bit)安装 Docker http://www.linuxidc.com/Linux/2014-10/108184.htm
在 Ubuntu 15.04 上如何安装 Docker 及基本用法 http://www.linuxidc.com/Linux/2015-09/122885.htm
Ubuntu 16.04 上 Docker 使用手记 http://www.linuxidc.com/Linux/2016-12/138490.htm
Docker 的详细介绍:请点这里
Docker 的下载地址:请点这里
本文永久更新链接地址:http://www.linuxidc.com/Linux/2017-02/140962.htm