DockerPodman save

DockerPodman save

docker image save

docker save = docker image save

参数只有一个 -o--output ,后接输出文件, 也可以写成 >

, 但> 输出文件只能写在最后 , -o--outpu可以写在前面也可以写在后面

用途: 将Image镜像保存为tar文件

为标准输出流生成一个 tared 存储库。 包含所有父图层,以及所有标签 + 版本,或指定 的 提供的每个参数。

用法1 : sudo docker save REPOSITORY:TAG --output xxx.tar

用法2 : sudo docker save --output xxx.tar REPOSITORY:TAG

用法3 : sudo docker save REPOSITORY:TAG -o xxx.tar

用法4 : sudo docker save REPOSITORY:TAG > xxx.tar

也可将 REPOSITORY:TAG 换成 ImageId , 但保存的文件不完全一样, load时也没有 REPOSITORY 和 TAG

实例

sh 复制代码
REPOSITORY   TAG       IMAGE ID       CREATED        SIZE
centos       7         eeb6ee3f44bd   2 years ago    204MB
root@ud2243-esxi-6412:~/docker# sudo docker save centos:7 --output DockerSave_centos-7_eeb6ee3f44bd.tar
sh 复制代码
sudo docker save centos:7 --output DockerSave_centos-7_eeb6ee3f44bd.tar

将Image镜像保存为tar文件,并继续转为gzip的例子

sh 复制代码
docker save myimage:latest | gzip > myimage_latest.tar.gz
可以将多个image保存save为一个image

可以将多个image保存save为一个image, load时,多个image都恢复了

sh 复制代码
docker save -o ubuntu.tar ubuntu:lucid ubuntu:saucy

实测

sh 复制代码
sudo docker save -o test.tar mysql:8.0.36 mysql:8.3.0
sh 复制代码
sudo docker save mysql:8.0.36 mysql:8.3.0 mysql:8.0.33 > 'mysql_830,8033,8036image.tar'
相关推荐
huosenbulusi6 小时前
helm推送到harbor私有库--http: server gave HTTP response to HTTPS client
云原生·容器·k8s
不会飞的小龙人6 小时前
Docker Compose创建镜像服务
linux·运维·docker·容器·镜像
不会飞的小龙人6 小时前
Docker基础安装与使用
linux·运维·docker·容器
张3蜂7 小时前
docker Ubuntu实战
数据库·ubuntu·docker
元气满满的热码式11 小时前
K8S中Service详解(三)
云原生·容器·kubernetes
染诗11 小时前
docker部署flask项目后,请求时总是报拒绝连接错误
docker·容器·flask
张3蜂13 小时前
docker 部署.netcore应用优势在什么地方?
docker·容器·.netcore
心惠天意15 小时前
docker-compose篇---创建jupyter并可用sudo的创建方式
docker·jupyter·容器
huaweichenai16 小时前
windows下修改docker的镜像存储地址
运维·docker·容器
菠萝炒饭pineapple-boss16 小时前
Dockerfile另一种使用普通用户启动的方式
linux·docker·dockerfile