mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
'docker history': show the history of an image
This commit is contained in:
parent
05ae69a6eb
commit
1ad69ad415
1 changed files with 22 additions and 0 deletions
22
commands.go
22
commands.go
|
@ -35,6 +35,7 @@ func (srv *Server) Help() string {
|
|||
{"import", "Create a new filesystem image from the contents of a tarball"},
|
||||
{"attach", "Attach to a running container"},
|
||||
{"commit", "Create a new image from a container's changes"},
|
||||
{"history", "Show the history of an image"},
|
||||
{"diff", "Inspect changes on a container's filesystem"},
|
||||
{"images", "List images"},
|
||||
{"info", "Display system-wide information"},
|
||||
|
@ -319,6 +320,27 @@ func (srv *Server) CmdRmi(stdin io.ReadCloser, stdout io.Writer, args ...string)
|
|||
return nil
|
||||
}
|
||||
|
||||
func (srv *Server) CmdHistory(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
|
||||
cmd := rcli.Subcmd(stdout, "history", "[OPTIONS] IMAGE", "Show the history of an image")
|
||||
if cmd.Parse(args) != nil || cmd.NArg() != 1 {
|
||||
cmd.Usage()
|
||||
return nil
|
||||
}
|
||||
image, err := srv.runtime.LookupImage(cmd.Arg(0))
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
var child *Image
|
||||
return image.WalkHistory(func(img *Image) {
|
||||
if child == nil {
|
||||
fmt.Fprintf(stdout, " %s\n", img.Id)
|
||||
} else {
|
||||
fmt.Fprintf(stdout, " = %s + %s\n", img.Id, strings.Join(child.ParentCommand, " "))
|
||||
}
|
||||
child = img
|
||||
})
|
||||
}
|
||||
|
||||
func (srv *Server) CmdRm(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
|
||||
cmd := rcli.Subcmd(stdout, "rm", "[OPTIONS] CONTAINER", "Remove a container")
|
||||
if err := cmd.Parse(args); err != nil {
|
||||
|
|
Loading…
Reference in a new issue