We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d92e563 commit 0fcfc0bCopy full SHA for 0fcfc0b
.changes/1039.json
@@ -0,0 +1,4 @@
1
+{
2
+ "description": "support overlay and fuse-overlayfs storage drivers",
3
+ "type": "added"
4
+}
src/docker/shared.rs
@@ -846,7 +846,7 @@ fn dockerinfo_parse_root_mount_path(info: &serde_json::Value) -> Result<MountDet
846
.and_then(|v| v.as_str())
847
.ok_or_else(|| eyre::eyre!("no driver name found"))?;
848
849
- if driver_name == "overlay2" {
+ if driver_name.to_lowercase().contains("overlay") {
850
let path = info
851
.pointer("/0/GraphDriver/Data/MergedDir")
852
0 commit comments