添加 存储驱动程序基本需求。

This commit is contained in:
titor-z 2024-12-20 00:07:57 +08:00
parent 9a68b6e6f1
commit cc82cbe980
4 changed files with 17 additions and 3 deletions

View File

@ -32,9 +32,18 @@ export default defineConfig({
link: '/docs/storage/',
items: [
{ text: "卷", link: '/docs/storage/volume' },
{ text: "绑定挂载", link: '/docs/storage/volume' },
{ text: "tmpfs 挂载", link: '/docs/storage/volume' },
{ text: "存储驱动程序", link: '/docs/storage/volume' },
{ text: "绑定挂载", link: '/docs/storage/mount' },
{ text: "tmpfs 挂载", link: '/docs/storage/tmpfs-bind' },
{
text: "存储驱动程序",
collapsed: true,
link: '/docs/storage/drivers/',
items: [
{ text: "选择一个存储驱动", link: '/docs/storage/drivers/0' },
{ text: "BTRFS storage driver", link: '/docs/storage/drivers/1' },
]
},
{ text: 'containerd 映像存储', link: '/docs/storage/container-image-store' }
]
}
]

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -0,0 +1,5 @@
---
outline: [2,4]
---
# 存储驱动程序

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB