From 421e366d8d574bec16eee862d984d299d3fb9ac7 Mon Sep 17 00:00:00 2001 From: John Starks Date: Fri, 22 Apr 2016 17:16:14 -0700 Subject: [PATCH] Windows: Support running dockerd as a service This adds support for Windows dockerd to run as a Windows service, managed by the service control manager. The log is written to the Windows event log (and can be viewed in the event viewer or in PowerShell). If there is a Go panic, the stack is written to a file panic.log in the Docker root. Signed-off-by: John Starks --- docker_windows.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker_windows.go b/docker_windows.go index 889e35272d..de32257586 100644 --- a/docker_windows.go +++ b/docker_windows.go @@ -1,5 +1,5 @@ package main import ( - _ "github.com/docker/docker/autogen/winresources/dockerd" + _ "github.com/docker/docker/autogen/winresources/docker" )