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
docker save -o nginx.tar nginx:latest
[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 ~]#
还没有评论,来说两句吧...