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 447414f commit 3de928dCopy full SHA for 3de928d
src/docker.rs
@@ -46,7 +46,10 @@ impl DockerEnv {
46
47
fn pull(&self) -> Fallible<()> {
48
info!("pulling image {} from Docker Hub", self.image);
49
- RunCommand::new("docker").args(&["pull", &self.image]).run()
+ RunCommand::new("docker")
50
+ .args(&["pull", &self.image])
51
+ .enable_timeout(false)
52
+ .run()
53
}
54
55
0 commit comments