mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 20:14:49 +00:00
This commit is contained in:
committed by
Aiden McClelland
parent
9f1d140911
commit
7a16917971
@@ -249,7 +249,8 @@ impl DockerAction {
|
|||||||
continue;
|
continue;
|
||||||
};
|
};
|
||||||
let src = volume.path_for(ctx, pkg_id, pkg_version, volume_id);
|
let src = volume.path_for(ctx, pkg_id, pkg_version, volume_id);
|
||||||
if tokio::fs::metadata(&src).await.is_err() {
|
if let Err(e) = tokio::fs::metadata(&src).await {
|
||||||
|
tracing::warn!("{} not mounted to container: {}", src.display(), e);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
res.push(OsStr::new("--mount").into());
|
res.push(OsStr::new("--mount").into());
|
||||||
|
|||||||
Reference in New Issue
Block a user