Remove engine.Table from docker history and docker rmi

Signed-off-by: Doug Davis <dug@us.ibm.com>
This commit is contained in:
Doug Davis
2015-04-03 08:31:30 -07:00
parent a3a45a6ec0
commit 0b2fa9c707
5 changed files with 76 additions and 57 deletions
+15
View File
@@ -41,3 +41,18 @@ type ContainerChange struct {
Kind int
Path string
}
// GET "/images/{name:.*}/history"
type ImageHistory struct {
ID string `json:"Id"`
Created int64
CreatedBy string
Tags []string
Size int64
}
// DELETE "/images/{name:.*}"
type ImageDelete struct {
Untagged string `json:",omitempty"`
Deleted string `json:",omitempty"`
}