aufs

作者: 沙之漏 | 来源:发表于2016-08-04 10:12 被阅读0次

    aufs学习

    docker可以借助多种driver完成镜像的存储,包括aufs、devicemapper、overlay、btrfs等,在ubuntu下,docker采用了aufs(advance unionfs)。所谓UnionFS就是把不同物理位置的目录合并mount到同一个目录中

    什么是aufs

    首先,我们建上两个目录(水果和蔬菜),并在这两个目录中放上一些文件,水果中有苹果和蕃茄,蔬菜有胡萝卜和蕃茄。

    $ tree
    .
    ├── fruits
    │   ├── apple
    │   └── tomato
    └── vegetables
        ├── carrots
        └── tomato
    

    相关文章

      网友评论

          本文标题:aufs

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