docker更改默认存储位置

docker 容器默认安装在系统盘,一般情况下系统盘比较小,随着镜像和容器的不断增加,可能回出现容量不够的情况,所以需要手动指定 docker 相关文件的存储位置

编辑 /etc/docker/daemon.json 文件

1
vi /etc/docker/daemon.json 

增加相关配置

1
2
3
4
{
"registry-mirrors": ["http://hub-mirror.c.163.com"],
"data-root": "/www/docker"
}

其中 registry-mirror 指定镜像仓库的源

data-root 指定镜像和容器的存储路径

保存之后重启 docker

1
systemctl restart docker
作者

Bruce Liu

发布于

2022-06-09

更新于

2022-11-12

许可协议

You need to set install_url to use ShareThis. Please set it in _config.yml.
You forgot to set the business or currency_code for Paypal. Please set it in _config.yml.

评论

You forgot to set the shortname for Disqus. Please set it in _config.yml.