System
System
Get information about Docker disk usage
docker system df
will show information about local images, containers, volumes and build cache.
Remove unused images
docker image prune
Remove stopped containers
docker container prune
Cleanup system
pass -a
to "nuke" pretty much everything, that is not running
docker system prune
Last updated
Was this helpful?