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 6b10341 commit 2bf11c2Copy full SHA for 2bf11c2
ide-common/src/main/kotlin/org/digma/intellij/plugin/docker/DockerService.kt
@@ -88,6 +88,7 @@ class DockerService {
88
private fun isDockerDaemonDownExitValue(exitValue: String): Boolean {
89
return exitValue.contains("Cannot connect to the Docker daemon", true) ||//mac, linux
90
exitValue.contains("docker daemon is not running", true) || //win
91
+ exitValue.contains("The system cannot find the file specified", true) || //win
92
exitValue.contains("Error while fetching server API version", true)
93
}
94
0 commit comments