[root@localhost dockerworking]# docker save --help Usage: docker save [OPTIONS] IMAGE [IMAGE…] Save one or more images to a tar archive (streamed to STDOUT by default) Options: -o, --output string Write to a file, instead of STDOUT [root@localhost dockerworking]# docker save -o gbt...
Currently I am using method suggested insave and load Docker images, but I believe there must be a better way to deal with all images. docker save $(docker images -q) -o /path/to/save/mydockersimages.tar If you want to save multiples images in one.tarfile: IDS=$(docker images | a...
#为mysql镜像设置新的标签和版本docker image tag mysql:8.0sre-mysql:learn_v1.0docker images-a|grep mysqlmysql8.0f5f171121fa34weeks ago 603MBsre-mysql learn_v1.0f5f171121fa34weeks ago 603MB 导出和导入镜像 docker image save命令可以将镜像导出为tar文件,而docker image load命令可以从tar文件中导入镜像。
保存一台宿主机上的镜像为tar文件,然后可以导入到其他的宿主机上。 save Save an image(s) to a tar archive 将镜像打包,与下面的load命令相对应 [root@xingdian ~]# docker save -o nginx.tar nginx //将nginx镜像打包成tar包 load Load an image from a tar archive or STDIN 与上面的save命令相对应,...
push Push an image or a repository to a registry 将镜像或存储库推入注册表 rm Remove one or more images 删除 一个或多个图像 save Save one or more images to a tar archive (streamed to STDOUT by default) 保存一个或多个图像到一个tar归档文件(流到stdout默认),可以指定到某个文件下 ...
rmi Remove one or more images # 移除一个或多个镜像[无容器使用该镜像才可删除,否则需删除相关容器才可继续或 -f 强制删除] run Run a command in a new container # 创建一个新的容器并运行一个命令 save Save an image to a tar archive # 保存一个镜像为一个 tar 包[对应 load] ...
DescriptionSave one or more images to a tar archive (streamed to STDOUT by default) Usagedocker image save [OPTIONS] IMAGE [IMAGE...] Aliases docker save Description Produces a tarred repository to the standard output stream. Contains all parent layers, and all tags + versions, or specifiedre...
目录1.docker save2.docker load3.Tip:Linux scp 命令 某些情况下 你可能需要离线安装镜像 dockersave、docker load 可以帮到你 1. docker save 使用docker save 将指定镜像保存成 tar 归档文件。 Save one or more images to a tar archive (streamed to STDOUT by default) ...
docker export命令创建一个tar文件,并且移除了元数据和不必要的层,将多个层整合成了一个层,只保存了当前统一视角看到的内容(译者注:expoxt后的容器再import到Docker中,通过docker images –tree命令只能看到一个镜像;而save后的镜像则不同,它能够看到这个镜像的历史镜像)。
rmi Remove one or more images # 移除一个或多个镜像[无容器使用该镜像才可删除,否则需删除相关容器才可继续或 -f 强制删除] run Run a command in a new container # 创建一个新的容器并运行一个命令 save Save an image to a tar archive # 保存一个镜像为一个 tar 包[对应 load] ...