修改docker映象儲存位置的方法

zffustb發表於2020-12-16

建立一個新的資料夾作為docker映象新的儲存位置,記下這個資料夾的路徑。

輸入:

sudo vim /etc/systemd/system/multi-user.target.wants/docker.service

ExecStart=/usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock

修改為:

ExecStart=/usr/bin/dockerd --graph=your_new_docker_img_path --storage-driver=overlay

重啟docker來更新配置:

sudo systemctl daemon-reload
sudo systemctl restart docker

 

相關文章