MCPcopy Create free account
hub / github.com/BitVM/BitVM / is_docker_installed

Function is_docker_installed

prover/src/docker.rs:168–174  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

166}
167
168fn is_docker_installed() -> bool {
169 Command::new("docker")
170 .arg("--version")
171 .output()
172 .map(|output| output.status.success())
173 .unwrap_or(false)
174}
175
176fn is_x86_architecture() -> bool {
177 ARCH == "x86_64" || ARCH == "x86"

Callers 1

stark_to_succinctFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected