mirror of https://github.com/docker/docs.git
Image.ParentCommand and Image.ParentConatiner should be stored
This commit is contained in:
parent
cdd62522b6
commit
f50dcbe404
4
image.go
4
image.go
|
@ -19,8 +19,8 @@ type Image struct {
|
||||||
Parent string `json:"parent,omitempty"`
|
Parent string `json:"parent,omitempty"`
|
||||||
Comment string `json:"comment,omitempty"`
|
Comment string `json:"comment,omitempty"`
|
||||||
Created time.Time `json:"created"`
|
Created time.Time `json:"created"`
|
||||||
ParentContainer string `json:-`
|
ParentContainer string `json:"parent_container,omitempty"`
|
||||||
ParentCommand []string `json:-`
|
ParentCommand []string `json:"parent_command,omitempty"`
|
||||||
graph *Graph
|
graph *Graph
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue