diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2017-11-20 17:21:05 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-20 17:21:05 -0500 |
commit | e1311ea722e26e3680af411876a43bbe85ccf83f (patch) | |
tree | 312ed45344f42d0c16ef7b0cb5fecd1316d20f0b /libpod/container.go | |
parent | 5d52f74d2136786c2874898ad373808e25609545 (diff) | |
parent | 51fc8827f54436864924ea8d4dc96111da81e5bf (diff) | |
download | podman-e1311ea722e26e3680af411876a43bbe85ccf83f.tar.gz podman-e1311ea722e26e3680af411876a43bbe85ccf83f.tar.bz2 podman-e1311ea722e26e3680af411876a43bbe85ccf83f.zip |
Merge pull request #51 from mheon/sql_state_tests
Add tests for SQL-backed state impl
Diffstat (limited to 'libpod/container.go')
-rw-r--r-- | libpod/container.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/container.go b/libpod/container.go index ffc4c6314..728a29dec 100644 --- a/libpod/container.go +++ b/libpod/container.go @@ -67,7 +67,7 @@ type containerRuntimeInfo struct { RunDir string `json:"runDir,omitempty"` // Mounted indicates whether the container's storage has been mounted // for use - Mounted bool `json:"-"` + Mounted bool `json:"mounted,omitempty"` // MountPoint contains the path to the container's mounted storage Mountpoint string `json:"mountPoint,omitempty"` // StartedTime is the time the container was started |