Since I usually use the docker build command to generate an image, sometimes due to frequent code updates, a lot of none images will be generated. Recently, I want to clear them out. So I wrote the following script: docker ps -a | grep "Exited" | awk '{print $1 }'|xargs docker stop docker ps -a | grep "Exited" | awk '{print $1 }'|xargs docker rm docker images|grep none|awk '{print $3 }'|xargs docker rmi Supplement: Docker deletes all none images or stopped containers After repeated builds in docker, many none images will remain. The following command deletes all none images in one click. docker rmi `docker images | grep '<none>' | awk '{print $3}'` A simpler way docker rmi `docker images -q -f dangling=true` or docker rmi $(docker images -q -f dangling=true) Remove all stopped containers docker rm $(docker ps -a -q) The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. If there are any mistakes or incomplete considerations, please feel free to correct me. You may also be interested in:
|
<<: Abbreviation of HTML DOCTYPE
>>: js array fill() filling method
Preface: The previous article described several c...
The main symptom of the conflict is that the FLASH...
Since I often install the system, I have to reins...
If I want to make the form non-input-capable, I se...
This article shares the specific code of Vue to a...
Table of contents Method 1 1. Configuration and i...
Detailed explanation of MySQL stored procedures, ...
1. HTML part <Col span="2">Upload...
Table of contents Overview What is Image Compress...
Today we discussed the issue of what the margin v...
The following script is used for scheduled backup...
Preface MySQL query uses the select command, and ...
Preface This article summarizes some common MySQL...
Teaching Topics Web page Applicable grade Second ...
1. Official website address The official website ...