Delete the image operation of none in docker images

Delete the image operation of none in docker images

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:
  • Talk about the issue of replacing docker (shim) with containerd in kubernetes1.20
  • How to keep running after exiting Docker container
  • Docker removes abnormal container operations
  • Goodbye Docker: How to Transform to Containerd in 5 Minutes
  • Docker dynamically exposes ports to containers
  • Implementation of local migration of docker images
  • Solve the problem of docker images disappearing
  • Docker image cannot be deleted Error: No such image: xxxxxx solution
  • How to delete an image in Docker
  • Naming containers and images in Docker

<<:  Abbreviation of HTML DOCTYPE

>>:  js array fill() filling method

Recommend

Detailed explanation of MySQL redo log (redo log) and rollback log (undo logo)

Preface: The previous article described several c...

Conflict resolution when marquee and flash coexist in a page

The main symptom of the conflict is that the FLASH...

Disabled values ​​that cannot be entered cannot be passed to the action layer

If I want to make the form non-input-capable, I se...

Vue implements scrollable pop-up window effect

This article shares the specific code of Vue to a...

Detailed explanation of Vue px to rem configuration

Table of contents Method 1 1. Configuration and i...

How to optimize images to improve website performance

Table of contents Overview What is Image Compress...

Discussion on default margin and padding values ​​of common elements

Today we discussed the issue of what the margin v...

How to implement scheduled backup of CentOS MySQL database

The following script is used for scheduled backup...

An article to master MySQL index query optimization skills

Preface This article summarizes some common MySQL...

Web lesson plans, lesson plans for beginners

Teaching Topics Web page Applicable grade Second ...

Detailed installation and configuration tutorial of PostgreSQL 11 under CentOS7

1. Official website address The official website ...