disable starting the daemon on windows

This commit is contained in:
Brad Rydzewski
2019-08-14 12:51:43 -07:00
parent 98722a6680
commit 3336758708
5 changed files with 42 additions and 19 deletions

10
daemon_win.go Normal file
View File

@@ -0,0 +1,10 @@
// +build windows
package docker
const dockerExe = "C:\\bin\\docker.exe"
const dockerdExe = ""
func (p Plugin) startDaemon() {
// this is a no-op on windows
}