Merge pull request #8423 from psakar/fix-8418
REST API v2 - list of images - mandatory Created attribute
This commit is contained in:
commit
41c88a6608
|
|
@ -51,10 +51,10 @@ func (i *Image) Id() string { // nolint
|
||||||
}
|
}
|
||||||
|
|
||||||
type ImageSummary struct {
|
type ImageSummary struct {
|
||||||
ID string `json:"Id"`
|
ID string `json:"Id"`
|
||||||
ParentId string `json:",omitempty"` // nolint
|
ParentId string `json:",omitempty"` // nolint
|
||||||
RepoTags []string `json:",omitempty"`
|
RepoTags []string `json:",omitempty"`
|
||||||
Created int64 `json:",omitempty"`
|
Created int64
|
||||||
Size int64 `json:",omitempty"`
|
Size int64 `json:",omitempty"`
|
||||||
SharedSize int `json:",omitempty"`
|
SharedSize int `json:",omitempty"`
|
||||||
VirtualSize int64 `json:",omitempty"`
|
VirtualSize int64 `json:",omitempty"`
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue