We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ae271f commit 69eb4abCopy full SHA for 69eb4ab
crates/worker/src/checks/hardware/storage.rs
@@ -90,11 +90,12 @@ pub fn find_largest_storage() -> Option<MountPoint> {
90
continue;
91
}
92
93
- // Skip system/special mounts
+ // Skip system/special mounts and Docker volumes
94
if mount_path.starts_with("/proc")
95
|| mount_path.starts_with("/sys")
96
|| mount_path.starts_with("/dev")
97
|| mount_path.starts_with("/run")
98
+ || mount_path.starts_with("/var/lib/docker/volumes")
99
{
100
101
0 commit comments