client.go 235 B

12345678910111213
  1. // +build !daemon
  2. package main
  3. import (
  4. "log" // see gh#8745, client needs to use go log pkg
  5. )
  6. const CanDaemon = false
  7. func mainDaemon() {
  8. log.Fatal("This is a client-only binary - running the Docker daemon is not supported.")
  9. }