docker 日志默认存放在 /var/lib/docker/ 下
shell
docker info
修改步骤:
1、停止docker服务
shell
systemctl stop docker
2、新建配置文件
shell
vi /etc/docker/daemon.json
添加如下内容
shell
{
"data-root": "/data/docker"
}
3、然后把之前的数据全部复制到新目录下
shell
cp -r /var/lib/docker /data
4、重启docker服务
shell
systemctl restart docker
再次查看docker信息,已经更换目录