docker daemon: show info about the server

For combing through logs, have an intro line with information about the
running instance of the docker daemon.

Docker-DCO-1.1-Signed-off-by: Vincent Batts <vbatts@redhat.com> (github: vbatts)
Upstream-commit: cea43f8a2da49dc9de35979829ff1876d48aea2c
Component: engine
This commit is contained in:
Vincent Batts
2014-04-03 10:54:54 -04:00
parent 06e40ba2fa
commit 52e20412e6
+7
View File
@@ -157,6 +157,13 @@ func main() {
}
}()
// TODO actually have a resolved graphdriver to show?
log.Printf("docker daemon: %s %s; execdriver: %s; graphdriver: %s",
dockerversion.VERSION,
dockerversion.GITCOMMIT,
*flExecDriver,
*flGraphDriver)
// Serve api
job := eng.Job("serveapi", flHosts.GetAll()...)
job.SetenvBool("Logging", true)