Intro Introduces and collects some simple and practical docker commands that may be used but few people use them dangling images When building your own docker image, you may encounter the situation of using one or more intermediate images. This will reduce the size of the final packaged docker image to a certain extent, but will also generate some useless images with the tag none, also known as dangling images. List all dangling images: docker images -f "dangling=true" Remove all dangling images: docker rmi $(docker images -f "dangling=true" -q) Batch Operations When the server is restarted or shut down for some reason, all Docker containers may need to be restarted. Start all Docker containers Note: If there are dependencies, such as link, etc., you should start these dependent containers first docker start $(docker ps -aq) Stop all docker containers docker stop $(docker ps -aq) Delete all docker containers docker rm $(docker ps -aq) Delete all docker images docker rmi $(docker images -q) Docker resource cleanup docker container prune # Delete all exited containers docker volume prune # Delete unused data volumes docker image prune # Delete dangling or all unused images docker system prune # Delete stopped containers, dangling images, networks not referenced by containers, and caches during the build process # For safety reasons, this command will not delete data volumes that are not referenced by any container by default. If you need to delete these data volumes at the same time, you need to explicitly specify the --volumns parameter docker system prune --all --force --volumns # This time, not only will the data volumes be deleted, but there will be no confirmation process! Note that using the --all parameter will delete all unreferenced images, not just dangling images. Reference https://www.jb51.net/article/143173.htm Summarize The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support for 123WORDPRESS.COM. You may also be interested in:
|
<<: Solution to the problem of repeated triggering of functions in Vue project watch
>>: How to solve the error "ERROR 1045 (28000)" when logging in to MySQL
Table of contents background: Nginx smooth upgrad...
If you want the entire interface to have a backgr...
CSS 3 animation example - dynamic effect of Tab b...
will-change tells the browser what changes will h...
1. Network Optimization YSlow has 23 rules. These...
mysql id starts from 1 and increases automaticall...
This article shares the MySQL 5.7.18 MSI installa...
The JavaScript hasOwnProperty() method is the pro...
Preface My needs are syntax highlighting, functio...
Table of contents introduction Ideas Establish ID...
The installation of mysql-5.7.17 is introduced be...
first step: In VMware, click "Edit" - &...
The solution to forgetting the initial password o...
Preface: I believe that those who need to underst...
Table of contents 1. What is Promise? 2. Why is t...