André Amorim

Crafting Web Experiences

//

Checking Docker Disk Usage

Need to find what’s eating your storage? Use these two commands:

1. Check Container Sizes

Shows the writable layer size vs. the total image size for each container.

docker ps --size

2. Overall Storage Summary

Shows a summary of images, containers, and volumes.

docker system df

Need more detail? Add the verbose flag to see exactly which items are taking up space:

docker system df -v

Published date:

Modified date: