共计 1648 个字符,预计需要花费 5 分钟才能阅读完成。
搭建好 Docker 私有仓库,但是不能查看里面的所有镜像,于是写一小脚本,目的是获取到该仓库中的所有镜像的名字。
#-*- coding:utf-8 -*-
#!/usr/bin/env Python
”’
Created on 2016.10.8
@author: an_time
@desc: get images name from registry
”’
import requests
import json
import traceback
repo_ip = ‘172.16.2.23’
repo_port = 5000
def getImagesNames(repo_ip,repo_port):
docker_images = []
try:
url = “http://” + repo_ip + “:” +str(repo_port) + “/v2/_catalog”
res =requests.get(url).content.strip()
res_dic = json.loads(res)
images_type = res_dic[‘repositories’]
for i in images_type:
url2 = “http://” + repo_ip + “:” +str(repo_port) +”/v2/” + str(i) + “/tags/list”
res2 =requests.get(url2).content.strip()
res_dic2 = json.loads(res2)
name = res_dic2[‘name’]
tags = res_dic2[‘tags’]
for tag in tags:
docker_name = str(repo_ip) + “:” + str(repo_port) + “/” + name + “:” + tag
docker_images.append(docker_name)
print docker_name
except:
traceback.print_exc()
return docker_images
a=getImagesNames(repo_ip, repo_port)
# print a
运行结果:
更多 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/140961.htm