Skip to content

Commit ecaa83b

Browse files
shazronizackwu
authored andcommitted
re-fix: fix: add new Windows docker.exe location (apache#5021)
1 parent 2c621c0 commit ecaa83b

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)