官网文档地址:https://docs.docker.com/engine/reference/commandline/save/
创建一个与镜像相同的docker备份。
1、重定向>
进行保存
$ docker save busybox > busybox.tar
$ ls -sh busybox.tar
2.7M busybox.tar
2、使用--output
参数,进行保存
$ docker save --output busybox.tar busybox
$ ls -sh busybox.tar
2.7M busybox.tar
3、使用-o
参数,进行保存
$ docker save -o fedora-all.tar fedora
$ docker save -o fedora-latest.tar fedora:latest
使用gzip将docker镜像保存到tar.gz文件中
You can use gzip to save the image file and make the backup smaller.
docker save myimage:latest | gzip > myimage_latest.tar.gz
选择特定标签的镜像进行保存
You can even cherry-pick particular tags of an image repository.文章来源:https://www.toymoban.com/news/detail-519482.html
$ docker save -o ubuntu.tar ubuntu:lucid ubuntu:saucy
保存
docker save -o aaa_v1.tar aaa:v1
导入
docker load -i aaa_v1.tar文章来源地址https://www.toymoban.com/news/detail-519482.html
到了这里,关于docker save (docker镜像保存导出)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!