Clean up Docker: Remove Old Images, Containers, and Volumes

28/12/2020

Clean up docker

Most users are complaining about the system/server slowness and somewhere consider to buy a new system for the server for getting good performance. Is this a good idea? In some cases, the slowness is due to the poor performance of the hardware and in that case, we may need to go with a new hardware. Other case is the system/server is overloaded with data or software.

In case of a local system, we can uninstall unwanted software or removed unwanted data to free up space and resources. Freeing the resources will improve the performance of the system. In case of web hosting servers, the software installed is required ones and we cannot uninstall the software. So other option reduces the amount hosting accounts on the server. While we considering the case of dockers, keeping unwanted images and dockers containers which are created for testing are wastage of resources. In this article, I will discuss cleaning the docker images, containers, and volumes etc.

Containers and Layers

The top writable layer is the major difference between docker images and containers. Same images can be shared by different containers. They have the separate top layer which is writable by the container and the changes made in the containers are written in this layer. Once the containers are removed, the top writable layer has removed the data from the container. You can use the following command to remove the container.

List Containers

docker ps  docker ps -a

–all , -a Show all containers (default shows just running)

You can use the option “-q” to print only the numeric ID and once it is listed, we can use the output to an input of the remove command to remove all containers listed.

–quiet , -q Only display numeric IDs

Remove containers

docker rm ID_or_Name  docker rm ID_or_Name1 ID_or_Name2

Remove all exited containers

List

docker ps -a -f status=exited

Remove

docker rm $(docker ps -a -f status=exited -q)

Stop and remove all containers

docker stop $(docker ps -a -q)  docker rm $(docker ps -a -q)

Docker Images

A Docker image is built up from a series of layers. Each layer represents an instruction in the image’s Dockerfile. Each layer except the very last one is read-only.

List docker image

docker images

The above command will show all top-level images, their repository, and tags and their size. Docker images have intermediate layers and they will help for reusability, decrease disk usage and speed up docker builds. By default, these intermediate docker images will not show. You can use the option “-a” to list the intermediate images too with the top level images.

docker images -a

–all , -a Show all images (default hides intermediate images)

Remove docker image

You can remove unwanted docker images using the following command.

docker rmi image_id

In case we need to remove multiple images, we can use filtering command outputs to the input of remove command. See the following example.

docker rmi image_id1 image_id2  docker rmi $(docker images -f "dangling=true" -q)

–quiet , -q Only show numeric IDs
–filter , -f Filter output based on conditions provided

There is also a prune command available in docker to remove dangling images ( images, which are not used by any containers )

docker image prune

Docker Volumes

Volumes are created individually and attached to the container for storing data. Removing the container will now remove the volume. And these volumes are not in use and are called dangling volume. You can list the volumes using list command after confirming, you can remove it.

List the docker volumes

docker volume ls  docker volume ls -f dangling=true # List dangling volumes

Remove docker volumes

docker volume rm volume_name volume_name  docker volume rm $(docker volume ls -f dangling=true -q) # Remove dangling volumes

You can use these commands to clean up your system when the systems are filled with the disk. Or you can automate the removal of dangling volumes and images using a cron.

ONET IDC thành lập vào năm 2012, là công ty chuyên nghiệp tại Việt Nam trong lĩnh vực cung cấp dịch vụ Hosting, VPS, máy chủ vật lý, dịch vụ Firewall Anti DDoS, SSL… Với 10 năm xây dựng và phát triển, ứng dụng nhiều công nghệ hiện đại, ONET IDC đã giúp hàng ngàn khách hàng tin tưởng lựa chọn, mang lại sự ổn định tuyệt đối cho website của khách hàng để thúc đẩy việc kinh doanh đạt được hiệu quả và thành công.
Bài viết liên quan

How to List Docker Images

Docker is an open source containerization system. Docker images are basically a base layout from which containers are created....
29/12/2020

Installing Docker on Debian 10

In this article, I am going to show you how to install the latest Docker CE (Community Edition) on Debian 10 Buster. So,...
29/12/2020

How to Setup Docker Machine with VirtualBox

Docker Machine is a tool to connect, use and monitor multiple Docker hosts hosted on VirtualBox, VMware, Hyper-V, DigitalOcean,...
29/12/2020
Bài Viết

Bài Viết Mới Cập Nhật

Reliable IPv4 and IPv6 Subnet Rental Services: The Perfect Solution for Global Businesses
23/12/2024

Tìm Hiểu Về Thuê Proxy US – Lợi Ích và Cách Sử Dụng Hiệu Quả
11/12/2024

Mua Proxy V6 Nuôi Facebook Spam Hiệu Quả Tại Onetcomvn
03/06/2024

Hướng dẫn cách sử dụng ProxyDroid để duyệt web ẩn danh
03/06/2024

Mua proxy Onet uy tín tại Onet.com.vn
03/06/2024