美文网首页
2018-09-26 docker load -i gd_sav

2018-09-26 docker load -i gd_sav

作者: 五大RobertWu伍洋 | 来源:发表于2018-09-26 11:30 被阅读25次

    [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
    

    相关文章

      网友评论

          本文标题:2018-09-26 docker load -i gd_sav

          本文链接:https://www.haomeiwen.com/subject/gasdoftx.html