Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to delete containers and images in docker

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/01 Report--

It is believed that many inexperienced people have no idea about how to delete containers and images in docker. Therefore, this article summarizes the causes and solutions of the problem. Through this article, I hope you can solve this problem.

Delete all closed containers

Docker ps-a | grep Exit | cut-d''- f 1 | xargs docker rm

Delete all dangling images (that is, mirrors without tag):

Docker rmi $(docker images | grep "^" | awk "{print $3}")

Delete all dangling data volumes (that is, useless volume):

Docker volume rm $(docker volume ls-qf dangling=true)

Clean up the garbage in the container

Docker system df-v

You can use this to find the exception container or execute the du command in the relevant directory, such as:

Cd / var/lib/docker/overlay2du-max-depth=1-h. / cd / var/lib/docker/containersdu-- max-depth=1-h. /

Then clean up any container that takes up too much, including the log files.

Clean up docker log files

Ls-lh $(find / var/lib/docker/containers/-name *-json.log)

List the log file size separately. Clear the log file

Truncate-s 0 / path/to/your/textfile

After reading the above, have you mastered how to delete containers and images in docker? If you want to learn more skills or want to know more about it, you are welcome to follow the industry information channel, thank you for reading!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report