我在我的Mac OS X上安装了docker工具箱,我需要将docker存储驱动程序从 aufs 更改为 devicemapper ,因为 aufs 造成问题。
我找到this thread in the twitter community并按照offical documentations of docker解释的方式尝试了,但DOCKER_OPTS="--storage-driver=devicemapper"
对我不起作用。
docker info
仍告诉我Storage Driver: aufs
。
我没有设法找到位于/etc/default/docker
的文件。
为了记录,我需要更改它才能正确运行here。
答案 0 :(得分:2)
使用docker-machine创建新VM时,可以使用--engine-storage-driver
标志来选择存储驱动程序。
$ docker-machine create -d virtualbox \
--engine-storage-driver devicemapper \
foobarmachine