Disk Usage scans 2 parts for each container: Mount Usage & Overlay Usage
- Overlay Usage, it's done via
docker system df -v ( Of which, proven not the most efficient, and is scheduled to be replaced by docker inspect --size). (SOLUTION FOUND)
- Mount Usage, uses
du -sh to calculate the disk usage of the mounted files. It's proven to be ridiculously slow when experiments that demand high I/O usage are conducted. (NO GOOD SOLUTION)
Disk Usage scans 2 parts for each container: Mount Usage & Overlay Usage
docker system df -v( Of which, proven not the most efficient, and is scheduled to be replaced bydocker inspect --size). (SOLUTION FOUND)du -shto calculate the disk usage of the mounted files. It's proven to be ridiculously slow when experiments that demand high I/O usage are conducted. (NO GOOD SOLUTION)