mirror of
https://github.com/docker/docs.git
synced 2026-03-28 14:58:53 +07:00
14 lines
235 B
Go
14 lines
235 B
Go
// +build !daemon
|
|
|
|
package main
|
|
|
|
import (
|
|
"log" // see gh#8745, client needs to use go log pkg
|
|
)
|
|
|
|
const CanDaemon = false
|
|
|
|
func mainDaemon() {
|
|
log.Fatal("This is a client-only binary - running the Docker daemon is not supported.")
|
|
}
|