2015-03-24 23:57:23 -04:00
|
|
|
package client
|
|
|
|
|
|
|
|
import (
|
2015-04-10 13:26:30 -04:00
|
|
|
"encoding/json"
|
2015-03-24 23:57:23 -04:00
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
|
2015-04-10 13:26:30 -04:00
|
|
|
"github.com/docker/docker/api/types"
|
2015-03-24 23:57:23 -04:00
|
|
|
flag "github.com/docker/docker/pkg/mflag"
|
|
|
|
"github.com/docker/docker/pkg/units"
|
|
|
|
)
|
|
|
|
|
2015-03-25 13:34:41 -04:00
|
|
|
// CmdInfo displays system-wide information.
|
|
|
|
//
|
|
|
|
// Usage: docker info
|
2015-03-24 23:57:23 -04:00
|
|
|
func (cli *DockerCli) CmdInfo(args ...string) error {
|
|
|
|
cmd := cli.Subcmd("info", "", "Display system-wide information", true)
|
|
|
|
cmd.Require(flag.Exact, 0)
|
2015-03-28 21:22:46 -04:00
|
|
|
cmd.ParseFlags(args, false)
|
2015-03-24 23:57:23 -04:00
|
|
|
|
2015-04-10 13:26:30 -04:00
|
|
|
rdr, _, err := cli.call("GET", "/info", nil, nil)
|
2015-03-24 23:57:23 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-04-10 13:26:30 -04:00
|
|
|
info := &types.Info{}
|
|
|
|
if err := json.NewDecoder(rdr).Decode(info); err != nil {
|
|
|
|
return fmt.Errorf("Error reading remote info: %v", err)
|
2015-03-24 23:57:23 -04:00
|
|
|
}
|
|
|
|
|
2015-04-10 13:26:30 -04:00
|
|
|
fmt.Fprintf(cli.out, "Containers: %d\n", info.Containers)
|
|
|
|
fmt.Fprintf(cli.out, "Images: %d\n", info.Images)
|
|
|
|
fmt.Fprintf(cli.out, "Storage Driver: %s\n", info.Driver)
|
|
|
|
if info.DriverStatus != nil {
|
|
|
|
for _, pair := range info.DriverStatus {
|
2015-03-24 23:57:23 -04:00
|
|
|
fmt.Fprintf(cli.out, " %s: %s\n", pair[0], pair[1])
|
|
|
|
}
|
|
|
|
}
|
2015-04-10 13:26:30 -04:00
|
|
|
fmt.Fprintf(cli.out, "Execution Driver: %s\n", info.ExecutionDriver)
|
|
|
|
fmt.Fprintf(cli.out, "Logging Driver: %s\n", info.LoggingDriver)
|
|
|
|
fmt.Fprintf(cli.out, "Kernel Version: %s\n", info.KernelVersion)
|
|
|
|
fmt.Fprintf(cli.out, "Operating System: %s\n", info.OperatingSystem)
|
|
|
|
fmt.Fprintf(cli.out, "CPUs: %d\n", info.NCPU)
|
|
|
|
fmt.Fprintf(cli.out, "Total Memory: %s\n", units.BytesSize(float64(info.MemTotal)))
|
|
|
|
fmt.Fprintf(cli.out, "Name: %s\n", info.Name)
|
|
|
|
fmt.Fprintf(cli.out, "ID: %s\n", info.ID)
|
2015-03-24 23:57:23 -04:00
|
|
|
|
2015-04-10 13:26:30 -04:00
|
|
|
if info.Debug || os.Getenv("DEBUG") != "" {
|
|
|
|
fmt.Fprintf(cli.out, "Debug mode (server): %v\n", info.Debug)
|
2015-03-24 23:57:23 -04:00
|
|
|
fmt.Fprintf(cli.out, "Debug mode (client): %v\n", os.Getenv("DEBUG") != "")
|
2015-04-10 13:26:30 -04:00
|
|
|
fmt.Fprintf(cli.out, "File Descriptors: %d\n", info.NFd)
|
|
|
|
fmt.Fprintf(cli.out, "Goroutines: %d\n", info.NGoroutines)
|
|
|
|
fmt.Fprintf(cli.out, "System Time: %s\n", info.SystemTime)
|
|
|
|
fmt.Fprintf(cli.out, "EventsListeners: %d\n", info.NEventsListener)
|
|
|
|
fmt.Fprintf(cli.out, "Init SHA1: %s\n", info.InitSha1)
|
|
|
|
fmt.Fprintf(cli.out, "Init Path: %s\n", info.InitPath)
|
|
|
|
fmt.Fprintf(cli.out, "Docker Root Dir: %s\n", info.DockerRootDir)
|
2015-03-24 23:57:23 -04:00
|
|
|
}
|
2015-04-10 13:26:30 -04:00
|
|
|
|
|
|
|
if info.HttpProxy != "" {
|
|
|
|
fmt.Fprintf(cli.out, "Http Proxy: %s\n", info.HttpProxy)
|
2015-03-24 23:57:23 -04:00
|
|
|
}
|
2015-04-10 13:26:30 -04:00
|
|
|
if info.HttpsProxy != "" {
|
|
|
|
fmt.Fprintf(cli.out, "Https Proxy: %s\n", info.HttpsProxy)
|
2015-03-24 23:57:23 -04:00
|
|
|
}
|
2015-04-10 13:26:30 -04:00
|
|
|
if info.NoProxy != "" {
|
|
|
|
fmt.Fprintf(cli.out, "No Proxy: %s\n", info.NoProxy)
|
2015-03-24 23:57:23 -04:00
|
|
|
}
|
2015-04-10 13:26:30 -04:00
|
|
|
|
|
|
|
if info.IndexServerAddress != "" {
|
2015-04-01 18:39:37 -04:00
|
|
|
u := cli.configFile.AuthConfigs[info.IndexServerAddress].Username
|
2015-03-24 23:57:23 -04:00
|
|
|
if len(u) > 0 {
|
|
|
|
fmt.Fprintf(cli.out, "Username: %v\n", u)
|
2015-04-10 13:26:30 -04:00
|
|
|
fmt.Fprintf(cli.out, "Registry: %v\n", info.IndexServerAddress)
|
2015-03-24 23:57:23 -04:00
|
|
|
}
|
|
|
|
}
|
2015-04-10 13:26:30 -04:00
|
|
|
if !info.MemoryLimit {
|
2015-03-24 23:57:23 -04:00
|
|
|
fmt.Fprintf(cli.err, "WARNING: No memory limit support\n")
|
|
|
|
}
|
2015-04-10 13:26:30 -04:00
|
|
|
if !info.SwapLimit {
|
2015-03-24 23:57:23 -04:00
|
|
|
fmt.Fprintf(cli.err, "WARNING: No swap limit support\n")
|
|
|
|
}
|
2015-04-10 13:26:30 -04:00
|
|
|
if !info.IPv4Forwarding {
|
2015-03-24 23:57:23 -04:00
|
|
|
fmt.Fprintf(cli.err, "WARNING: IPv4 forwarding is disabled.\n")
|
|
|
|
}
|
2015-04-10 13:26:30 -04:00
|
|
|
if info.Labels != nil {
|
2015-03-24 23:57:23 -04:00
|
|
|
fmt.Fprintln(cli.out, "Labels:")
|
2015-04-10 13:26:30 -04:00
|
|
|
for _, attribute := range info.Labels {
|
2015-03-24 23:57:23 -04:00
|
|
|
fmt.Fprintf(cli.out, " %s\n", attribute)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|