storage driverがdevice mapperの場合のディスク容量
device mapperの場合は、既定のディスク容量が10GBほどとなる。Oracle DatabaseのDockerコンテナをbuildするとこける。
storage driverを最初からoverlay2 にするための方法
インストール時にデバイスタイプにLVMを指定すると、Dockerのstorage dirverはdevice mapperになる。
https://docs.docker.com/storage/storagedriver/select-storage-driver/#supported-backing-filesystems
基本ディスクを選んで、xfsを選んでやる必要がある。
さらに、CentOS7 1511(minimal)の場合は上記の手順でもやはりdevice mapperが既定となる。overlayを使用するための設定がされていないためと想像される。
https://docs.docker.com/storage/storagedriver/overlayfs-driver/
CentOS7 1804(minimal)で基本ディスク(xfs)でインストールすれば、overlay2がstorage driverとして設定される。