mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
1b0b1ec657
Addresses #6830 Docker-DCO-1.1-Signed-off-by: Phil Estes <estesp@linux.vnet.ibm.com> (github: estesp)
66 lines
1.9 KiB
Go
66 lines
1.9 KiB
Go
package daemon
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
|
|
"github.com/docker/docker/engine"
|
|
"github.com/docker/docker/runconfig"
|
|
)
|
|
|
|
func (daemon *Daemon) ContainerInspect(job *engine.Job) engine.Status {
|
|
if len(job.Args) != 1 {
|
|
return job.Errorf("usage: %s NAME", job.Name)
|
|
}
|
|
name := job.Args[0]
|
|
if container := daemon.Get(name); container != nil {
|
|
container.Lock()
|
|
defer container.Unlock()
|
|
if job.GetenvBool("raw") {
|
|
b, err := json.Marshal(&struct {
|
|
*Container
|
|
HostConfig *runconfig.HostConfig
|
|
}{container, container.hostConfig})
|
|
if err != nil {
|
|
return job.Error(err)
|
|
}
|
|
job.Stdout.Write(b)
|
|
return engine.StatusOK
|
|
}
|
|
|
|
out := &engine.Env{}
|
|
out.Set("Id", container.ID)
|
|
out.SetAuto("Created", container.Created)
|
|
out.SetJson("Path", container.Path)
|
|
out.SetList("Args", container.Args)
|
|
out.SetJson("Config", container.Config)
|
|
out.SetJson("State", container.State)
|
|
out.Set("Image", container.Image)
|
|
out.SetJson("NetworkSettings", container.NetworkSettings)
|
|
out.Set("ResolvConfPath", container.ResolvConfPath)
|
|
out.Set("HostnamePath", container.HostnamePath)
|
|
out.Set("HostsPath", container.HostsPath)
|
|
out.Set("Name", container.Name)
|
|
out.Set("Driver", container.Driver)
|
|
out.Set("ExecDriver", container.ExecDriver)
|
|
out.Set("MountLabel", container.MountLabel)
|
|
out.Set("ProcessLabel", container.ProcessLabel)
|
|
out.SetJson("Volumes", container.Volumes)
|
|
out.SetJson("VolumesRW", container.VolumesRW)
|
|
|
|
if children, err := daemon.Children(container.Name); err == nil {
|
|
for linkAlias, child := range children {
|
|
container.hostConfig.Links = append(container.hostConfig.Links, fmt.Sprintf("%s:%s", child.Name, linkAlias))
|
|
}
|
|
}
|
|
|
|
out.SetJson("HostConfig", container.hostConfig)
|
|
|
|
container.hostConfig.Links = nil
|
|
if _, err := out.WriteTo(job.Stdout); err != nil {
|
|
return job.Error(err)
|
|
}
|
|
return engine.StatusOK
|
|
}
|
|
return job.Errorf("No such container: %s", name)
|
|
}
|