github.com/dlintw/docker@v1.5.0-rc4/docker/client.go (about) 1 // +build !daemon 2 3 package main 4 5 import ( 6 "log" // see gh#8745, client needs to use go log pkg 7 ) 8 9 const CanDaemon = false 10 11 func mainDaemon() { 12 log.Fatal("This is a client-only binary - running the Docker daemon is not supported.") 13 }