コンテナー サイズを制限する機能が必要ですが、デフォルトのストレージ ドライバー 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 以外を選択する唯一のオプションはありますか?