mirror of
https://github.com/docker/docs.git
synced 2026-03-29 15:28:51 +07:00
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.")
|
|
}
|