docker save命令是用来将docker镜像保存成tar文件
docker save命令相对应的命令是docker load
docker export命令是用来将docker容器里的文件系统作为一个tar归档文件导出到标准输出
docker export命令相对应的命令是docker import
注意上述docker命令的区别
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 ~]#
命令:
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 ~]#