需求
容器跑了一段时间,空间不足,需要扩容。
传统方法需要commit成新的image然后重新run添加-v进行挂载
容器使用了很长时间,数据较多打包不方便,希望热添加。
实现
以下命令在root权限下执行
sudo -i
# 找到当前容器my_container的id
docker container inspect my_container | grep "Id"
# 转换配置文件
cd /var/lib/docker/containers/xxxxxxxx
jq . config.v2.json > tmp.json
# 根据格式添加MountPoint字段
jq -c . tmp.json > config.v2.json
# 重启docker生效
service docker restart
参考
How to Add a Volume to an Existing Docker Container
Add a Volume to an Existing Docker Container | Baeldung on Linux