From c574178a02eccc40919e352a3bcb2e3781defd15 Mon Sep 17 00:00:00 2001 From: loopever Date: Tue, 26 Nov 2019 18:56:12 +0800 Subject: [PATCH] =?UTF-8?q?Fix=20issue=20#431:=20AUFS=E5=85=A8=E7=A7=B0?= =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=B8=BAWikipedia=E7=9A=84=E5=86=85=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- underly/ufs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/underly/ufs.md b/underly/ufs.md index cbc4f87..9b3ed12 100644 --- a/underly/ufs.md +++ b/underly/ufs.md @@ -6,7 +6,7 @@ 另外,不同 Docker 容器就可以共享一些基础的文件系统层,同时再加上自己独有的改动层,大大提高了存储的效率。 -Docker 中使用的 AUFS(AnotherUnionFS)就是一种联合文件系统。 `AUFS` 支持为每一个成员目录(类似 Git 的分支)设定只读(readonly)、读写(readwrite)和写出(whiteout-able)权限, 同时 `AUFS` 里有一个类似分层的概念, 对只读权限的分支可以逻辑上进行增量地修改(不影响只读部分的)。 +Docker 中使用的 AUFS(Advanced Multi-Layered Unification Filesystem)就是一种联合文件系统。 `AUFS` 支持为每一个成员目录(类似 Git 的分支)设定只读(readonly)、读写(readwrite)和写出(whiteout-able)权限, 同时 `AUFS` 里有一个类似分层的概念, 对只读权限的分支可以逻辑上进行增量地修改(不影响只读部分的)。 Docker 目前支持的联合文件系统包括 `OverlayFS`, `AUFS`, `Btrfs`, `VFS`, `ZFS` 和 `Device Mapper`。