disable docker health checks

This commit is contained in:
Aiden McClelland
2021-12-09 12:47:38 -07:00
committed by Aiden McClelland
parent 13f08242dd
commit f69d4a386c

View File

@@ -63,7 +63,8 @@ impl DockerAction {
.arg("--network=start9")
.arg(format!("--add-host=embassy:{}", Ipv4Addr::from(HOST_IP)))
.arg("--name")
.arg(&container_name);
.arg(&container_name)
.arg("--no-healthcheck");
}
cmd.args(
self.docker_args(ctx, pkg_id, pkg_version, volumes, allow_inject)