How to free up disk space used by Docker

When you use Docker on a daily basis, your disk can get full of unnamed images, stopped containers, dangling volumes and build cache. Here is how to clean all that up.

First, check how much space Docker is using:

docker system df

Enter fullscreen mode