mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-11-30 02:48:45 +08:00
3c3975b5ef
Signed-off-by: quicksilver <zhifeng.zhang@zilliz.com>
53 lines
1.6 KiB
Python
53 lines
1.6 KiB
Python
import argparse
|
|
import docker
|
|
import gzip
|
|
import os
|
|
import yaml
|
|
from nested_lookup import nested_lookup
|
|
|
|
|
|
if __name__ == "__main__":
|
|
parser = argparse.ArgumentParser(
|
|
description="Save Docker images")
|
|
|
|
parser.add_argument("--manifest",
|
|
required=True,
|
|
help="Path to the manifest yaml")
|
|
parser.add_argument("--save_path",
|
|
type=str,
|
|
default='images',
|
|
help='Directory to save images to')
|
|
arguments = parser.parse_args()
|
|
|
|
with open(arguments.manifest, 'r') as file:
|
|
template = file.read()
|
|
|
|
images=[]
|
|
parts = template.split('---')
|
|
for p in parts:
|
|
y = yaml.safe_load(p)
|
|
matches = nested_lookup("image", y)
|
|
if (len(matches)):
|
|
images += matches
|
|
|
|
save_path = arguments.save_path
|
|
if not os.path.isdir(save_path):
|
|
os.mkdir(save_path)
|
|
|
|
client = docker.from_env()
|
|
for image_name in set(images):
|
|
file_name = (image_name.split(':')[0].replace("/", "-"))
|
|
f = gzip.open(save_path + "/" + file_name + '.tar.gz', 'wb')
|
|
try:
|
|
image = client.images.get(image_name)
|
|
if image.id:
|
|
print ("docker image \"" + image_name + "\" already exists.")
|
|
except docker.errors.ImageNotFound:
|
|
print ("docker pull " + image_name + " ...")
|
|
image = client.images.pull(image_name)
|
|
image_tar = image.save(named=True)
|
|
f.writelines(image_tar)
|
|
f.close()
|
|
|
|
print("Save docker images to \"" + save_path + "\"")
|