Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在设置 Docker 以使用 XFS 文件系统构建容器时遇到困难。我的存储驱动程序正确设置为overlay2,但我的后备文件系统是extfs.
overlay2
extfs
我会storage-opts在我的 docker 守护程序文件中指定什么内容吗?
storage-opts
如果您使用的是overlay2存储驱动程序,那么 Docker 永远不会创建文件系统。它只是在您现有的支持文件系统上创建目录。如果该文件系统正在使用ext4,这就是您将得到的。
ext4
Docker 实际创建新文件系统的唯一情况是在使用devicemapper驱动程序时,在这种情况下,Docker 从块存储设备中切出块,然后将它们格式化以用于您选择的文件系统。
devicemapper