Signed-off-by: John Howard <jhoward@microsoft.com> Upstream-commit: 0c7eab31577d65f0d33766af533144e358ffe651 Component: engine
12 lines
258 B
Go
12 lines
258 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
// CmdDaemon reports on an error on windows, because there is no exec
|
|
func (p DaemonProxy) CmdDaemon(args ...string) error {
|
|
return fmt.Errorf(
|
|
"`docker daemon` does not exist on windows. Please run `dockerd` directly")
|
|
}
|