从CMDto /etc/ docker /daemon.json移动docker守护进程配置。我将基础映像大小从默认的10.7G更改为20G,但后台进程无法启动
{
"storage-opts": [
{"dm.basesize": "10G" }
],
"graph": "/home/ashwaghmare/docker/docker-data"
}~
发布于 2017-01-05 18:49:46
语法更改有助于配置基本映像大小
{
"storage-opts": ["dm.basesize=20G"],
"graph": "/home/ashwaghmare/docker/docker-data"
}https://stackoverflow.com/questions/41482683
复制相似问题