Interface ContainerInspectResponse

ContainerInspectResponse

interface ContainerInspectResponse {
    AppArmorProfile?: string;
    Args?: string[];
    Config?: ContainerConfig;
    Created?: string;
    Driver?: string;
    ExecIDs?: null | string[];
    GraphDriver?: GraphDriverData;
    HostConfig?: HostConfig;
    HostnamePath?: string;
    HostsPath?: string;
    Id?: string;
    Image?: string;
    LogPath?: string;
    MountLabel?: string;
    Mounts?: MountPoint[];
    Name?: string;
    NetworkSettings?: NetworkSettings;
    Path?: string;
    Platform?: string;
    ProcessLabel?: string;
    ResolvConfPath?: string;
    RestartCount?: number;
    SizeRootFs?: number;
    SizeRw?: number;
    State?: null | ContainerState;
}

Properties

AppArmorProfile?: string
Args?: string[]

The arguments to the command being run

Created?: string

The time the container was created

Driver?: string
ExecIDs?: null | string[]

IDs of exec instances that are running in the container.

GraphDriver?: GraphDriverData
HostConfig?: HostConfig
HostnamePath?: string
HostsPath?: string
Id?: string

The ID of the container

Image?: string

The container's image ID

LogPath?: string
MountLabel?: string
Mounts?: MountPoint[]
Name?: string
NetworkSettings?: NetworkSettings
Path?: string

The path to the command being run

Platform?: string
ProcessLabel?: string
ResolvConfPath?: string
RestartCount?: number
SizeRootFs?: number

The total size of all the files in this container.

SizeRw?: number

The size of files that have been created or changed by this container.

State?: null | ContainerState