Skip to content

Commit

Permalink
Merge pull request #2666 from brbayes-msft/brbayes/npipe-fix
Browse files Browse the repository at this point in the history
Fix docker daemon on Windows trying to use https instead of http for named pipes
  • Loading branch information
mtrmac authored Jan 2, 2025
2 parents 620f400 + 41d7279 commit 75e4f15
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions docker/daemon/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ func newDockerClient(sys *types.SystemContext) (*dockerclient.Client, error) {
}
switch serverURL.Scheme {
case "unix": // Nothing
case "npipe": // Nothing
case "http":
hc := httpConfig()
opts = append(opts, dockerclient.WithHTTPClient(hc))
Expand Down

0 comments on commit 75e4f15

Please sign in to comment.