mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
4b9fe9c298
Signed-off-by: Antonio Murdaca <me@runcom.ninja>
99 lines
2.7 KiB
Go
99 lines
2.7 KiB
Go
package daemon
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/docker/docker/api/types"
|
|
"github.com/docker/docker/runconfig"
|
|
)
|
|
|
|
type ContainerJSONRaw struct {
|
|
*Container
|
|
HostConfig *runconfig.HostConfig
|
|
}
|
|
|
|
func (daemon *Daemon) ContainerInspectRaw(name string) (*ContainerJSONRaw, error) {
|
|
container, err := daemon.Get(name)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
container.Lock()
|
|
defer container.Unlock()
|
|
|
|
return &ContainerJSONRaw{container, container.hostConfig}, nil
|
|
}
|
|
|
|
func (daemon *Daemon) ContainerInspect(name string) (*types.ContainerJSON, error) {
|
|
container, err := daemon.Get(name)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
container.Lock()
|
|
defer container.Unlock()
|
|
|
|
// make a copy to play with
|
|
hostConfig := *container.hostConfig
|
|
|
|
if children, err := daemon.Children(container.Name); err == nil {
|
|
for linkAlias, child := range children {
|
|
hostConfig.Links = append(hostConfig.Links, fmt.Sprintf("%s:%s", child.Name, linkAlias))
|
|
}
|
|
}
|
|
// we need this trick to preserve empty log driver, so
|
|
// container will use daemon defaults even if daemon change them
|
|
if hostConfig.LogConfig.Type == "" {
|
|
hostConfig.LogConfig = daemon.defaultLogConfig
|
|
}
|
|
|
|
containerState := &types.ContainerState{
|
|
Running: container.State.Running,
|
|
Paused: container.State.Paused,
|
|
Restarting: container.State.Restarting,
|
|
OOMKilled: container.State.OOMKilled,
|
|
Dead: container.State.Dead,
|
|
Pid: container.State.Pid,
|
|
ExitCode: container.State.ExitCode,
|
|
Error: container.State.Error,
|
|
StartedAt: container.State.StartedAt,
|
|
FinishedAt: container.State.FinishedAt,
|
|
}
|
|
|
|
contJSON := &types.ContainerJSON{
|
|
Id: container.ID,
|
|
Created: container.Created,
|
|
Path: container.Path,
|
|
Args: container.Args,
|
|
Config: container.Config,
|
|
State: containerState,
|
|
Image: container.ImageID,
|
|
NetworkSettings: container.NetworkSettings,
|
|
ResolvConfPath: container.ResolvConfPath,
|
|
HostnamePath: container.HostnamePath,
|
|
HostsPath: container.HostsPath,
|
|
LogPath: container.LogPath,
|
|
Name: container.Name,
|
|
RestartCount: container.RestartCount,
|
|
Driver: container.Driver,
|
|
ExecDriver: container.ExecDriver,
|
|
MountLabel: container.MountLabel,
|
|
ProcessLabel: container.ProcessLabel,
|
|
Volumes: container.Volumes,
|
|
VolumesRW: container.VolumesRW,
|
|
AppArmorProfile: container.AppArmorProfile,
|
|
ExecIDs: container.GetExecIDs(),
|
|
HostConfig: &hostConfig,
|
|
}
|
|
|
|
return contJSON, nil
|
|
}
|
|
|
|
func (daemon *Daemon) ContainerExecInspect(id string) (*execConfig, error) {
|
|
eConfig, err := daemon.getExecConfig(id)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return eConfig, nil
|
|
}
|