美文网首页
Docker基础

Docker基础

作者: 紫石南 | 来源:发表于2016-11-29 15:32 被阅读23次

    推荐文章

    https://yeasy.gitbooks.io/docker_practice/content/introduction/

    镜像

    打包镜像

    docker save  eb9a804ae885 > /opt/soft/postgres.img 
    

    加载镜像

    docker load < postgres.img  
    

    容器

    仓库

    数据管理

    数据卷和数据卷容器

    Windows挂载数据卷

    • 要先在设置里面绑定Shared Dirves再挂载
    docker run -ti -v e:/share:/usr/myshare  ubuntu  bash
    

    进入容器

    相关文章

      网友评论

          本文标题:Docker基础

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