After the server where Docker is located has been running for a while, it was found that the server disk directory was running out of space. By checking the directories level by level through du -h --max-depth=1 /, it is found that the files in the /var/lib/docker directory are too large. Use the following method to solve this problem. Transfer data to modify docker default storage location There are several ways to modify the default storage location of Docker. - Stop the docker service systemctl stop docker - Create a new docker directory, execute the command df -h, and find a large disk I created the /data/docker/lib directory under the /data directory mkdir -p /data/docker/lib - Migrate the files under /var/lib/docker directory to /data/docker/lib Completed docker path after migration: /data/docker/lib/docker rsync -avz /var/lib/docker/ /data/docker/lib/ - Configure /usr/lib/systemd/system/docker.service vi /usr/lib/systemd/system/docker.service [Service] ExecStart=/usr/bin/dockerd --graph=/data/docker/lib/docker - Restart Docker systemctl daemon-reload systemctl restart docker systemctl enable docker - Confirm whether the Docker Root Dir modification has taken effect [root@iZbp1jcwx7sfb1yrnvpg84Z docker]# docker info ... Docker Root Dir: /data/docker/lib/docker Debug Mode (client): false Debug Mode (server): false Registry: https://index.docker.io/v1/ ... - After the startup is successful, confirm whether the previous image is still there [root@iZbp1jcwx7sfb1yrnvpg84Z docker]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE 10.80.177.233/policy 2.1.2 64ac4e178cd2 2 hours ago 818 MB 10.80.177.233/crm 2.1.3 d7636fbb7a29 2 hours ago 762 MB - After confirming that the container is OK, delete the files in the /var/lib/docker/ directory This is the end of this article about solving the problem of insufficient docker disk space. For more relevant content about insufficient docker disk space, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Steps and pitfalls of upgrading linux mysql5.5 to mysql5.7
>>: CSS3 transition to achieve underline example code
First, let’s take a look at a CSS carousel animat...
Several common paging methods: 1. Escalator metho...
Table of contents Standard execution process opti...
Table of contents origin Virtual Memory Paging an...
Preface I had previously enabled Docker's 237...
Table of contents MySQL federated query execution...
Our bank's MGR will be launched at the end of...
radio-and-checkbox Pure CSS to achieve radio and ...
1. Use floating method Effect picture: The code i...
Table of contents 1. Introduction 2. Deployment E...
Install axios and implement communication Here we...
Preface In backend development, in order to preve...
1. Basic usage examples of float 1. Let's fir...
This article shares with you a practical web navi...
CSS has two pseudo-classes that are not commonly ...