1.docker save介绍
docker save命令是用来将docker镜像保存成tar文件
docker save命令相对应的命令是docker load
docker export命令是用来将docker容器里的文件系统作为一个tar归档文件导出到标准输出
docker export命令相对应的命令是docker import
注意上述docker命令的区别
2.docker save用法
docker save [参数] IMAGE [IMAGE...]
[root@centos79 ~]# docker save --help
Usage: docker save [OPTIONS] IMAGE [IMAGE...]
Save one or more images to a tar archive (streamed to STDOUT by default)
Aliases:
docker image save, docker save
Options:
-o, --output string Write to a file, instead of STDOUT
[root@centos79 ~]#
3.实例
3.1.docker镜像归档
命令:
docker save nginx:latest >nginx.tar
OR文章来源:https://www.toymoban.com/news/detail-828068.html
docker save -o nginx.tar nginx:latest 文章来源地址https://www.toymoban.com/news/detail-828068.html
[root@centos79 ~]# docker save -o nginx.tar nginx:latest
[root@centos79 ~]# ls -lrt nginx.tar
-rw------- 1 root root 145905152 12月 5 14:57 nginx.tar
[root@centos79 ~]#
到了这里,关于4-Docker命令之docker save的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!