DEV Community

Viral Patel
Viral Patel

Posted on

Docker Cleanup Commands

If you see Docker claiming lot of space on your computer and if you want to reclaim all of your space back from Docker, use following Docker commands for cleanup. Make sure you are aware that this will delete images and containers from your machine, make sure you do not run this on production machines unless you know what you are doing 😎.

How to remove docker’s unused data?

docker system prune —force

To delete everything

docker system prune -a --volumes

How to delete all docker containers including its volumes use?

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

How to delete all docker images?

docker rmi -f $(docker images -a -q)

These commands helped me to reclaim more than 10GB of data for only few months of work with Docker.

This blog was originally published on my personal blog Viral Patel.

Top comments (0)