Signed-off-by: Antonio Murdaca <runcom@linux.com> Upstream-commit: 927d13bc3c2030bb0e0429dbc500f13d72e7ccf6 Component: engine
12 lines
210 B
Go
12 lines
210 B
Go
// +build !daemon
|
|
|
|
package main
|
|
|
|
import (
|
|
"log" // see gh#8745, client needs to use go log pkg
|
|
)
|
|
|
|
func mainDaemon() {
|
|
log.Fatal("This is a client-only binary - running the Docker daemon is not supported.")
|
|
}
|