[root@gdswarm1 ~]# docker import --help
Usage: docker import [OPTIONS] file|URL|- [REPOSITORY[:TAG]]
Import the contents from a tarball to create a filesystem image
Options:
-c, --change list Apply Dockerfile instruction to the created image
--help Print usage
-m, --message string Set commit message for imported image
使用上述命令import了一个tar文件(包含3个docker镜像),结果确实是多了一个文件层,就是没有镜像!
所以最后用的是 docker load -i gd_saved_images.tar
这样三个docker镜像才正确地载入了。
docker load --help
Usage: docker load [OPTIONS]
Load an image from a tar archive or STDIN
Options:
--help Print usage
-i, --input string Read from tar archive file, instead of STDIN
-q, --quiet Suppress the load output
网友评论