summaryrefslogtreecommitdiff
path: root/libpod/container_inspect.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-12-19 19:36:52 +0100
committerGitHub <noreply@github.com>2019-12-19 19:36:52 +0100
commitdde48b44e725a3da959c627519e8110ec992a26e (patch)
treeb3c6ba6c51221548eee9584df5be10b6418445c9 /libpod/container_inspect.go
parent6b956dfd1f1071ceb40b403a9604da387979105a (diff)
parent437bc61f4e64d132736066330b18f327bffe48fa (diff)
downloadpodman-dde48b44e725a3da959c627519e8110ec992a26e.tar.gz
podman-dde48b44e725a3da959c627519e8110ec992a26e.tar.bz2
podman-dde48b44e725a3da959c627519e8110ec992a26e.zip
Merge pull request #4684 from vrothberg/systemd-improvements
container config: add CreateCommand
Diffstat (limited to 'libpod/container_inspect.go')
-rw-r--r--libpod/container_inspect.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/libpod/container_inspect.go b/libpod/container_inspect.go
index 66aca23ed..22afc61cc 100644
--- a/libpod/container_inspect.go
+++ b/libpod/container_inspect.go
@@ -174,6 +174,9 @@ type InspectContainerConfig struct {
StopSignal uint `json:"StopSignal"`
// Configured healthcheck for the container
Healthcheck *manifest.Schema2HealthConfig `json:"Healthcheck,omitempty"`
+ // CreateCommand is the full command plus arguments of the process the
+ // container has been created with.
+ CreateCommand []string `json:"CreateCommand,omitempty"`
}
// InspectContainerHostConfig holds information used when the container was
@@ -947,6 +950,8 @@ func (c *Container) generateInspectContainerConfig(spec *spec.Spec) (*InspectCon
// leak.
ctrConfig.Healthcheck = c.config.HealthCheckConfig
+ ctrConfig.CreateCommand = c.config.CreateCommand
+
return ctrConfig, nil
}