Files
docker-cli/components/engine/cmd/dockerd
Tobias Klauser 520019f676 Windows: fix build after re-vendoring golang.org/x/sys
Due to the CL https://go-review.googlesource.com/c/39608/ in
x/sys/windows which changed the definitions of STD_INPUT_HANDLE,
STD_OUTPUT_HANDLE and STD_ERROR_HANDLE, we get the following failure
in cmd/dockerd/service_windows.go after re-vendoring x/sys/windows:

  06:29:57 # github.com/docker/docker/cmd/dockerd
  06:29:57 .\service_windows.go:400: cannot use sh (type int) as type uint32 in argument to windows.GetStdHandle

Fix it by adding an explicit type conversion when calling
windows.GetStdHandle.

Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Upstream-commit: e769da88e6c6e94a397822dd8962cbcb83a402a0
Component: engine
2017-07-12 14:52:42 +02:00
..
2017-06-20 09:21:37 -07:00
2017-06-01 13:34:31 -07:00
2017-06-01 13:34:31 -07:00
2016-10-27 10:34:38 -07:00
2017-06-01 13:34:31 -07:00
2017-06-01 13:34:31 -07:00
2016-09-01 14:47:51 +08:00

docker.go contains Docker daemon's main function.

This file provides first line CLI argument parsing and environment variable setting.