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.
docker info
1 parent f739aa5 commit f3f55afCopy full SHA for f3f55af
src/docker.rs
@@ -20,7 +20,12 @@ pub fn build_container(docker_env: &str) -> Fallible<()> {
20
}
21
22
pub(crate) fn is_running() -> bool {
23
- RunCommand::new("docker").args(&["info"]).run().is_ok()
+ info!("checking if the docker daemon is running");
24
+ RunCommand::new("docker")
25
+ .args(&["info"])
26
+ .hide_output(true)
27
+ .run()
28
+ .is_ok()
29
30
31
#[derive(Copy, Clone)]
0 commit comments