summaryrefslogtreecommitdiff
path: root/libpod/container.go
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@gmail.com>2018-01-06 12:44:33 -0500
committerAtomic Bot <atomic-devel@projectatomic.io>2018-01-08 19:34:21 +0000
commit3d05f100f7be78932242d3d09a88e4a6236a0d3c (patch)
tree357ce1b330fcec96fcc309867a86879e5857b516 /libpod/container.go
parent7b08aa78e4ede4c54fda6cd9917bb62e18d0d634 (diff)
downloadpodman-3d05f100f7be78932242d3d09a88e4a6236a0d3c.tar.gz
podman-3d05f100f7be78932242d3d09a88e4a6236a0d3c.tar.bz2
podman-3d05f100f7be78932242d3d09a88e4a6236a0d3c.zip
Save ContainerConfig.User to database
Signed-off-by: Matthew Heon <matthew.heon@gmail.com> Closes: #194 Approved by: rhatdan
Diffstat (limited to 'libpod/container.go')
-rw-r--r--libpod/container.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/libpod/container.go b/libpod/container.go
index 31f84ebb5..66eb4aa2d 100644
--- a/libpod/container.go
+++ b/libpod/container.go
@@ -157,6 +157,7 @@ type ContainerConfig struct {
CreatedTime time.Time `json:"createdTime"`
// User/GID to use within the container
User string `json:"user"`
+
// TODO save log location here and pass into OCI code
// TODO allow overriding of log path
}