diff options
Diffstat (limited to 'libpod/container.go')
-rw-r--r-- | libpod/container.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libpod/container.go b/libpod/container.go index a30a9e006..37dabd80d 100644 --- a/libpod/container.go +++ b/libpod/container.go @@ -167,6 +167,9 @@ type containerState struct { // the path of the file on disk outside the container BindMounts map[string]string `json:"bindMounts,omitempty"` + // CgroupCreated indicates that the container has created a cgroup + CgroupCreated bool `json:"cgroupCreated,omitempty"` + // UserNSRoot is the directory used as root for the container when using // user namespaces. UserNSRoot string `json:"userNSRoot,omitempty"` |