mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Fixing JSON Tags
Signed-off-by: Megan Kostick <mkostick@us.ibm.com>
This commit is contained in:
parent
26e83832c7
commit
88119bb276
1 changed files with 9 additions and 9 deletions
|
@ -79,13 +79,13 @@ type Port struct {
|
|||
|
||||
type Container struct {
|
||||
ID string `json:"Id"`
|
||||
Names []string `json:,omitempty"`
|
||||
Image string `json:,omitempty"`
|
||||
Command string `json:,omitempty"`
|
||||
Created int `json:,omitempty"`
|
||||
Ports []Port `json:,omitempty"`
|
||||
SizeRw int `json:,omitempty"`
|
||||
SizeRootFs int `json:,omitempty"`
|
||||
Labels map[string]string `json:,omitempty"`
|
||||
Status string `json:,omitempty"`
|
||||
Names []string `json:",omitempty"`
|
||||
Image string `json:",omitempty"`
|
||||
Command string `json:",omitempty"`
|
||||
Created int `json:",omitempty"`
|
||||
Ports []Port `json:",omitempty"`
|
||||
SizeRw int `json:",omitempty"`
|
||||
SizeRootFs int `json:",omitempty"`
|
||||
Labels map[string]string `json:",omitempty"`
|
||||
Status string `json:",omitempty"`
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue