diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2017-12-13 22:02:15 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-02-12 14:28:07 +0000 |
commit | b4cdc27b31a638322fb83b64aea869ce8600ea01 (patch) | |
tree | 5d248aeafa1f54a2c169d1d51deaaeb5de1e0e23 /libpod/container.go | |
parent | 2e96acf3007cbd05a37a8af7156f0abda073cb5a (diff) | |
download | podman-b4cdc27b31a638322fb83b64aea869ce8600ea01.tar.gz podman-b4cdc27b31a638322fb83b64aea869ce8600ea01.tar.bz2 podman-b4cdc27b31a638322fb83b64aea869ce8600ea01.zip |
Add implementation for BoltDB-backed state
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Closes: #184
Approved by: baude
Diffstat (limited to 'libpod/container.go')
-rw-r--r-- | libpod/container.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libpod/container.go b/libpod/container.go index 06dca823a..4d28c1b59 100644 --- a/libpod/container.go +++ b/libpod/container.go @@ -135,11 +135,11 @@ type containerState struct { // NetNSPath is the path of the container's network namespace // Will only be set if config.CreateNetNS is true, or the container was // told to join another container's network namespace - NetNS ns.NetNS + NetNS ns.NetNS `json:"-"` // IP address of container (if network namespace was created) - IPAddress string + IPAddress string `json:"ipAddress"` // Subnet mask of container (if network namespace was created) - SubnetMask string + SubnetMask string `json:"subnetMask"` } // ContainerConfig contains all information that was used to create the |