Tutorial

How To Remove Docker Images, Containers, and Volumes

Updated on March 27, 2024
English
How To Remove Docker Images, Containers, and Volumes

Introduction

Docker makes it easy to wrap your applications and services in containers so you can run them anywhere. However, as you work with Docker, it’s also easy to accumulate an excessive number of unused images, containers, and data volumes that clutter the output and consume disk space.

Docker gives you all the tools you need to clean up your system from the command line. This cheat sheet-style guide provides a quick reference to commands that are useful for freeing disk space and keeping your system organized by removing unused Docker images, containers, and volumes.

How to Use This Guide:

  • This guide is in cheat sheet format with self-contained command-line snippets.
  • Jump to any section that is relevant to the task you are trying to complete.

Note: The command substitution syntax, command $(command), used in the commands is available in many popular shells, such as bash, zsh, and Windows Powershell.

If you want a 1-click way to deploy a Docker application to a live server, take a look at DigitalOcean App Platform.

Purging All Unused or Dangling Images, Containers, Volumes, and Networks

Docker provides a single command that will clean up any resources — images, containers, volumes, and networks — that are dangling (not tagged or associated with a container):

docker system prune

To additionally remove any stopped containers and all unused images (not just dangling images), add the -a flag to the command:

docker system prune -a

Removing Docker Images

Remove one or more specific images

Use the docker images command with the -a flag to locate the ID of the images you want to remove. This will show you every image, including intermediate image layers. When you’ve located the images you want to delete, you can pass their ID or tag to docker rmi:

List:

docker images -a

Remove:

docker rmi Image Image

Note: The -a or --all flag in the docker images command displays all the Docker images, including intermediate ones that are not referenced by any tags. By default, docker images shows only the images with at least one tag. However, there may be some images without any tags that are still taking up disk space on the system. The -a flag can be helpful in identifying images that can be pruned to save disk space. When used with the docker rmi command, the -f or --force flag can also be used to remove images with no tags.

Remove Dangling Docker Images

Docker images consist of multiple layers. Dangling images are layers that have no relationship to any tagged images. They no longer serve a purpose and consume disk space. They can be located by adding the filter flag -f with a value of dangling=true to the docker images command. When you’re sure you want to delete them, you can use the docker image prune command:

Note: If you build an image without tagging it, the image will appear on the list of dangling images because it has no association with a tagged image. You can avoid this situation by providing a tag when you build, and you can retroactively tag an image with the docker tag command.

List:

docker images -f dangling=true

Remove:

docker image prune

Removing images according to a pattern

You can find all the images that match a pattern using a combination of docker images and grep. Once you’re satisfied, you can delete them by using awk to pass the IDs to docker rmi. Note that these utilities are not supplied by Docker and are not necessarily available on all systems:

List:

docker images -a |  grep "pattern"

Remove:

docker images -a | grep "pattern" | awk '{print $1":"$2}' | xargs docker rmi

Remove all images

All the Docker images on a system can be listed by adding -a to the docker images command. Once you’re sure you want to delete them all, you can add the -q flag to pass the image ID to docker rmi:

List:

docker images -a

Remove:

docker rmi $(docker images -a -q)

Removing Containers

Remove one or more specific containers

Use the docker ps command with the -a flag to locate the name or ID of the containers you want to remove:

List:

docker ps -a

Remove:

docker rm ID_or_Name ID_or_Name

Remove a container upon exiting

If you know when you’re creating a container that you won’t want to keep it around once you’re done, you can run docker run --rm to automatically delete it when it exits:

Run and Remove:

docker run --rm image_name

Remove all exited containers

You can locate containers using docker ps -a and filter them by their status: created, restarting, running, paused, or exited. To review the list of exited containers, use the -f flag to filter based on status. When you’ve verified you want to remove those containers, use -q to pass the IDs to the docker rm command:

List:

docker ps -a -f status=exited

Remove:

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

Remove containers using more than one filter

Docker filters can be combined by repeating the filter flag with an additional value. This results in a list of containers that meet either condition. For example, if you want to delete all containers marked as either created (a state which can result when you run a container with an invalid command) or exited, you can use two filters:

List:

docker ps -a -f status=exited -f status=created

Remove:

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

Remove containers according to a pattern

You can find all the containers that match a pattern using a combination of docker ps and grep. When you’re satisfied that you have the list you want to delete, you can use awk and xargs to supply the ID to docker rm. Note that these utilities are not supplied by Docker and are not necessarily available on all systems:

List:

docker ps -a |  grep "pattern

Remove:

docker ps -a | grep "pattern" | awk '{print $1}' | xargs docker rm

Stop and remove all containers

You can review the containers on your system with docker ps. Adding the -a flag will show all containers. When you’re sure you want to delete them, you can add the -q flag to supply the IDs to the docker stop and docker rm commands:

List:

docker ps -a

Remove:

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

Removing Volumes

Remove one or more specific volumes

Use the docker volume ls command to locate the volume name or names you wish to delete. Then you can remove one or more volumes with the docker volume rm command:

List:

docker volume ls

Remove:

docker volume rm volume_name volume_name

Remove dangling volumes

Since the point of volumes is to exist independent from containers, when a container is removed, a volume is not automatically removed at the same time. When a volume exists and is no longer connected to any containers, it’s called a dangling volume. To locate them to confirm you want to remove them, you can use the docker volume ls command with a filter to limit the results to dangling volumes. When you’re satisfied with the list, you can remove them all with docker volume prune:

List:

docker volume ls -f dangling=true

Remove:

docker volume prune

Remove a container and its volume

If you create an unnamed volume, it can be deleted at the same time as the container with the -v flag. Note that this only works with unnamed volumes. When the container is successfully removed, its ID is displayed. Note that no reference is made to the removal of the volume. If it is unnamed, it is silently removed from the system. If it is named, it silently stays present.

Remove:

docker rm -v container_name

Conclusion

This guide covers some of the common commands used to remove images, containers, and volumes with Docker. There are many other combinations and flags that can be used with each. For a comprehensive guide to what’s available, see the Docker documentation for docker system prune, docker rmi, docker rm, and docker volume rm. If there are common cleanup tasks you’d like to see in the guide, please ask or make suggestions in the comments.

For a detailed look at the different components of a Docker container, check out The Docker Ecosystem: An Introduction to Common Components.

Spin up a virtual machine with Docker pre-configured and attached in one simple click with DigitalOcean. Let us spin up a Docker droplet for you in seconds, so you can focus on building a great application.

Learn more here


About the authors

Default avatar

Sr Technical Writer


Still looking for an answer?

Ask a questionSearch for more help

Was this helpful?
 
10 Comments


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Thanks for the document. To remove dangling images the command seems to be docker image prune, not docker images purge

λ docker image prune
WARNING! This will remove all dangling images.
Are you sure you want to continue? [y/N] y
Deleted Images:
[...]

Super handy article!

I think the “Removing images according to a pattern” and “Remove containers according to a pattern” are mixed up.

For images:

docker images | grep "pattern" | awk '{print $3}' | xargs docker rmi

and alternatively, I found this one to work better (as multiple tags can link to a same image):

docker images | grep "pattern" | awk '{print $1":"$2}' | xargs docker rmi

For containers:

docker ps -a | grep "pattern" | awk '{print $1}' | xargs docker rm

Great article. Thanks!

There is -q missing in Remove containers using more than one filter

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

What about the build in CLI tools

docker system prune

docker volume prune

docker network prune

And you are done!

This was a life saver. I am a rookie at this and it helped greatly. Thanks!

Thanks for this detailed useful article! For now as a punch line you can add the new alternate way : docker system prune See https://docs.docker.com/engine/reference/commandline/system_prune/ Can’t figure out since this new command released.

Most information online can be changed, deleted, included, and the list goes on, and these can serve you in various valuable ways.We are a team of professional hackers and serving you is our priority, rest assured that your privacy is guaranteed by us.

We provide the following services and more…

*. Consulting services.

*. Email password retrieval.

*. Email hack

*. Credit repair [revolving and installment tradelines}.

*. Student loans payment.

*. Phone hack. (cheating spouse).

*. Clearing of criminal records.

*. Recovery of lost funds on Binary Options and Capital investments.

*. School Grades Upgrade.

*. Database retrieval and so much more.

You can also contact us with your unique job which isn’t listed on the list, we would be happy to help you out with it also.

CONTACT us: hackburg (@) protonmail dot com

KFSys
Site Moderator
Site Moderator badge
December 29, 2023

Heya all,

To remove unused or dangling images, containers, volumes, and networks in Docker, you can use the Docker command line interface. Docker provides a convenient command for cleaning up resources that are no longer in use. Here’s how to do it:

Docker System Prune

The docker system prune command is used to remove unused Docker objects. It can delete the following:

  • All stopped containers
  • All networks not used by at least one container
  • All dangling images (untagged images)
  • All build cache

Basic Usage

docker system prune

When you run this command, Docker will ask for confirmation to remove the objects.

Prune and Include Volumes

If you want to include unused volumes in the cleanup, use the -a flag:

docker system prune -a --volumes

This command will remove:

  • All stopped containers
  • All unused networks
  • All unused volumes
  • All dangling and unused images

Automatic Confirmation

If you’re running this in a script or don’t want to be asked for confirmation, you can use the -f or --force flag:

docker system prune -f

Notes

  • Caution: Be careful when using these commands, especially in a production environment, as they can remove more than you intend.
  • Volumes: Unused volumes can contain important data. Ensure that no important data will be lost when deleting unused volumes.
  • Dangling Images: Dangling images are layers that have no relationship to tagged images; they often result from intermediate layers left over after a build.

Docker Version Dependency

These commands are available in newer versions of Docker. If you are using an older version, some of these options might not be available or might behave differently. Always refer to the Docker documentation for the version you are using.

Cleaning Up Regularly

For regular maintenance, you can run these commands periodically. Some users even set up cron jobs to execute these commands to keep the Docker environment clean. However, always ensure that this won’t disrupt your workflow or delete data you need.

thanks for the info

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Join the Tech Talk
Success! Thank you! Please check your email for further details.

Please complete your information!

Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

Become a contributor

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow — whether you're running one virtual machine or ten thousand.

Learn more
DigitalOcean Cloud Control Panel