summaryrefslogtreecommitdiff
path: root/libpod/container.go
diff options
context:
space:
mode:
Diffstat (limited to 'libpod/container.go')
-rw-r--r--libpod/container.go6
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