mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
927d13bc3c
Signed-off-by: Antonio Murdaca <runcom@linux.com>
11 lines
210 B
Go
11 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.")
|
|
}
|