aufs

aufs学习

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

什么是aufs

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

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

你可能感兴趣的:(aufs)