pip 安裝:python
複製代碼
首先安裝epel擴展源:
yum -y install epel-release
更新完成以後,就可安裝pip:
yum -y install python-pip
安裝完成以後清除cache:
yum clean alldocker
request模塊安裝:json
pip install requestsapp
建立get.py文件,內容以下:
#!/usr/bin/env python
#-- coding:utf-8 --ide
import requests
import json
import traceback url
repo_ip = '192.168.0.153'
repo_port = 5000 ip
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 utf-8
a=getImagesNames(repo_ip, repo_port)
#print aget
執行命令:
python get.py便可。(注意,ip地址,port參數要對應實際環境)requests