1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #4990 from vbatts/vbatts-server_show_info

docker daemon: show info about the server
This commit is contained in:
Victor Vieux 2014-04-10 11:14:09 -07:00
commit bcc3857fa0

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)