我希望能够限制容器大小,但是使用默认存储驱动程序 aufs(适用于 Ubuntu 14.04)在尝试使用 --storage-opt 参数时出现错误
$ docker create -it --name="disk_test" --storage-opt size=100G --cpuset-cpus="10,11,12,13,14,15,16,17" -m=16G ubuntu:14.04
Unable to find image 'ubuntu:14.04' locally
14.04: Pulling from library/ubuntu
04c996abc244: Pull complete
d394d3da86fe: Pull complete
bac77aae22d4: Pull complete
b48b86b78e97: Pull complete
09b3dd842bf5: Pull complete
Digest: sha256:bd00486535fd3ab00463b0572d94a62715cb790e482d5419c9179cd22c74520b
Status: Downloaded newer image for ubuntu:14.04
Error response from daemon: --storage-opt is not supported for aufs
当我使用 devicemanager 作为我的存储驱动程序时,它可以工作。如果我想限制我的容器根文件系统大小,我唯一的选择是选择 aufs 以外的东西吗?