Skip to content

Commit 2bf11c2

Browse files
committed
add-error-for-docker-daemon-down
1 parent 6b10341 commit 2bf11c2

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

ide-common/src/main/kotlin/org/digma/intellij/plugin/docker/DockerService.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ class DockerService {
8888
private fun isDockerDaemonDownExitValue(exitValue: String): Boolean {
8989
return exitValue.contains("Cannot connect to the Docker daemon", true) ||//mac, linux
9090
exitValue.contains("docker daemon is not running", true) || //win
91+
exitValue.contains("The system cannot find the file specified", true) || //win
9192
exitValue.contains("Error while fetching server API version", true)
9293
}
9394

0 commit comments

Comments
 (0)