2015-03-24 23:57:23 -04:00
|
|
|
package client
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/url"
|
2015-12-29 09:03:39 -05:00
|
|
|
"strings"
|
2015-03-24 23:57:23 -04:00
|
|
|
|
2016-03-16 15:19:22 -04:00
|
|
|
"golang.org/x/net/context"
|
|
|
|
|
2015-05-05 00:18:28 -04:00
|
|
|
Cli "github.com/docker/docker/cli"
|
2015-03-24 23:57:23 -04:00
|
|
|
flag "github.com/docker/docker/pkg/mflag"
|
2016-01-04 19:05:26 -05:00
|
|
|
"github.com/docker/engine-api/types"
|
2015-03-24 23:57:23 -04:00
|
|
|
)
|
|
|
|
|
2015-03-25 13:34:41 -04:00
|
|
|
// CmdRmi removes all images with the specified name(s).
|
|
|
|
//
|
|
|
|
// Usage: docker rmi [OPTIONS] IMAGE [IMAGE...]
|
2015-03-24 23:57:23 -04:00
|
|
|
func (cli *DockerCli) CmdRmi(args ...string) error {
|
2015-10-08 08:46:21 -04:00
|
|
|
cmd := Cli.Subcmd("rmi", []string{"IMAGE [IMAGE...]"}, Cli.DockerCommands["rmi"].Description, true)
|
2015-07-03 05:26:09 -04:00
|
|
|
force := cmd.Bool([]string{"f", "-force"}, false, "Force removal of the image")
|
|
|
|
noprune := cmd.Bool([]string{"-no-prune"}, false, "Do not delete untagged parents")
|
2015-03-24 23:57:23 -04:00
|
|
|
cmd.Require(flag.Min, 1)
|
2015-07-03 05:26:09 -04:00
|
|
|
|
2015-03-28 21:22:46 -04:00
|
|
|
cmd.ParseFlags(args, true)
|
2015-03-24 23:57:23 -04:00
|
|
|
|
|
|
|
v := url.Values{}
|
|
|
|
if *force {
|
|
|
|
v.Set("force", "1")
|
|
|
|
}
|
|
|
|
if *noprune {
|
|
|
|
v.Set("noprune", "1")
|
|
|
|
}
|
|
|
|
|
2015-12-29 09:03:39 -05:00
|
|
|
var errs []string
|
2015-03-24 23:57:23 -04:00
|
|
|
for _, name := range cmd.Args() {
|
2015-12-04 17:02:06 -05:00
|
|
|
options := types.ImageRemoveOptions{
|
2015-12-04 13:13:43 -05:00
|
|
|
ImageID: name,
|
|
|
|
Force: *force,
|
|
|
|
PruneChildren: !*noprune,
|
|
|
|
}
|
|
|
|
|
2016-03-16 15:19:22 -04:00
|
|
|
dels, err := cli.client.ImageRemove(context.Background(), options)
|
2015-03-24 23:57:23 -04:00
|
|
|
if err != nil {
|
Remove redundant error message
Currently some commands including `kill`, `pause`, `restart`, `rm`,
`rmi`, `stop`, `unpause`, `udpate`, `wait` will print a lot of error
message on client side, with a lot of redundant messages, this commit is
trying to remove the unuseful and redundant information for user.
Signed-off-by: Zhang Wei <zhangwei555@huawei.com>
2016-02-03 01:29:15 -05:00
|
|
|
errs = append(errs, err.Error())
|
2015-03-24 23:57:23 -04:00
|
|
|
} else {
|
2015-04-03 11:31:30 -04:00
|
|
|
for _, del := range dels {
|
|
|
|
if del.Deleted != "" {
|
|
|
|
fmt.Fprintf(cli.out, "Deleted: %s\n", del.Deleted)
|
2015-03-24 23:57:23 -04:00
|
|
|
} else {
|
2015-04-03 11:31:30 -04:00
|
|
|
fmt.Fprintf(cli.out, "Untagged: %s\n", del.Untagged)
|
2015-03-24 23:57:23 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-12-29 09:03:39 -05:00
|
|
|
if len(errs) > 0 {
|
|
|
|
return fmt.Errorf("%s", strings.Join(errs, "\n"))
|
2015-05-05 03:59:17 -04:00
|
|
|
}
|
|
|
|
return nil
|
2015-03-24 23:57:23 -04:00
|
|
|
}
|