如果我想创建一个类似于ext4的15GB的数据量,我该怎么做?
docker volume create –name vol只创建一个空卷.
docker volume create –opt type = ext4 –name vol创建一个ext4卷,但我无法指定它的大小,因为ext4根据ext4的挂载选项不支持它.
最佳答案
根据documentation,使用大小创建泊坞窗卷时,可以指定大小限制
原文链接:https://www.f2er.com/docker/435894.html这是文档中提供的示例命令,用于指定相同的命令
docker volume create -d flocker -o size=20GB my-named-volume
更新git repository的更多示例:
The built-in local driver on Linux accepts options similar to the linux
mount command:
$docker volume create –driver local –opt type=tmpfs –opt device=tmpfs –opt o=size=100m,uid=1000
Another example:
$docker volume create –driver local –opt type=btrfs –opt device=/dev/sda2