mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
0c7eab3157
Signed-off-by: John Howard <jhoward@microsoft.com>
11 lines
258 B
Go
11 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")
|
|
}
|