mirror of
https://github.com/thegeeklab/drone-docker-buildx.git
synced 2024-11-05 04:20:41 +00:00
12 lines
210 B
Go
12 lines
210 B
Go
// +build windows
|
|
|
|
package docker
|
|
|
|
const dockerExe = "C:\\bin\\docker.exe"
|
|
const dockerdExe = ""
|
|
const dockerHome = "C:\\ProgramData\\docker\\"
|
|
|
|
func (p Plugin) startDaemon() {
|
|
// this is a no-op on windows
|
|
}
|