Working github actions

This commit is contained in:
Shubham Agrawal
2021-09-27 10:48:58 +05:30
commit 8123ab7679
13 changed files with 627 additions and 0 deletions

11
daemon/daemon_win.go Normal file
View File

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