获取docker私有仓库中所有镜像的方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取docker私有仓库中所有镜像的方法相关的知识,希望对你有一定的参考价值。
搭建好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
运行结果:
本文出自 “黑色时间” 博客,请务必保留此出处http://blacktime.blog.51cto.com/11722918/1859716
以上是关于获取docker私有仓库中所有镜像的方法的主要内容,如果未能解决你的问题,请参考以下文章