@cyysu
2017-09-26T07:50:09.000000Z
字数 904
阅读 722
- 时间:2017年9月26日
- 作者:Kali
- 邮箱:cyysu.github.io@gmail.com
- 版本:4.0
- 描述:Python脚本
脚本编写
#-*- coding:utf-8 -*-#!/usr/bin/env python'''Created on 2016.10.8@author: an_time@desc: get images name from registry'''import requestsimport jsonimport tracebackrepo_ip = '10.0.0.78'repo_port = 5000def 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 + ":" + tagdocker_images.append(docker_name)print docker_nameexcept:traceback.print_exc()return docker_imagesa=getImagesNames(repo_ip, repo_port)print a
支付宝 微信
