Docker Cleanup Commands

Viral Patel
1 min readDec 1, 2019
Docker

If you see Docker claiming a 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 a few months of work with Docker. Reclaim your space NOW.

This blog was originally posted on my personal blog. https://viralpatel.blog/blog/docker-cleanup-commands

--

--