System environment:
1. Problem DescriptionRecently, when executing the Docker run command to start the image, the Docker start image command could not be executed normally, and the following error message was prompted:
2. Problem AnalysisAccording to the error message, the problem is that the Docker Thin Pool is running out of space. You need to create more free space for the pool or use the dm.min_free_space option to change the size of the pool's free space. We use the following command to view the Docker information on the server and observe the resource usage: $ docker info The displayed content is as follows:
From the above information, we can see that the Thin Pool Minimum Free Space = 100.74GB and the Data Space Available = 100.67, which means that the Data Space Available available space is lower than the minimum space required by the Thin Pool, which will cause the mirror to fail to start normally. 3. Problem Solving 1. Check Docker disk usageWe can use the following command to view Docker disk usage: $ docker system df TYPE TOTAL ACTIVE SIZE RECLAIMABLE Images 500 12 38.31GB 34.5GB (90%) Containers 64 21 157MB 4.109MB (2%) Local Volumes 37 18 0B 0B Build Cache 0 0 The following information is listed in total:
The components are:
If you want to view the system usage in detail, you can use the -v command to view the storage usage details of each resource. 2. Execute cleanup commands for reclaimable storage resourcesDocker provides a storage resource recycling function. The command is as follows: For details on the cleanup command, please refer to the official Docker documentation: docker system prune $ docker system prune This command will clean up all unused containers, networks, images (dangling and unreferenced), and volumes (optional). After executing this command, wait for a while, and after enough resources are recovered, the Docker image will return to normal. SummarizeThis is the end of this article about how to solve the problem of insufficient storage resource pool on Docker server. For more information about how to solve the problem of insufficient storage resource pool on Docker server, 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:
|
<<: A brief analysis of MySQL cardinality statistics
>>: Detailed explanation of HTML form elements (Part 1)
Table of contents JavaScript prototype chain Obje...
Currently, many businesses are conducting promoti...
About JS, CSS CSS: Stylesheet at the top Avoid CS...
COALESCE is a function that refers to each parame...
>1 Start the database In the cmd command windo...
I have done some research on "embedding non-...
Table of contents background What are the methods...
View the engines supported by the current databas...
background I originally wanted to download a 6.7 ...
Use self:: or __CLASS__ to get a static reference...
I've been using redis recently and I find it ...
The latest Insider version of Visual Studio Code ...
The installation of mysql-5.7.17 is introduced be...
1. Background Netplan is a new command-line netwo...
Copy code The code is as follows: <div content...