Skip to content

Commit 6feda87

Browse files
authored
re-fix: fix: add new Windows docker.exe location (#5021)
1 parent f18e9d5 commit 6feda87

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

core/invoker/src/main/scala/org/apache/openwhisk/core/containerpool/docker/StandaloneDockerContainerFactory.scala

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,9 @@ trait WindowsDockerClient {
100100

101101
override protected def executableAlternatives: List[String] = {
102102
val executable = loadConfig[String]("whisk.docker.executable").toOption
103-
List("""C:\Program Files\Docker\Docker\resources\bin\docker.exe""") ++ executable
103+
List(
104+
"""C:\Program Files\Docker\Docker\resources\bin\docker.exe""",
105+
"""C:\Program Files\Docker\Docker\resources\docker.exe""") ++ executable
104106
}
105107
}
106108

0 commit comments

Comments
 (0)