12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- package image
- import (
- "fmt"
- "strings"
- "golang.org/x/net/context"
- "github.com/docker/docker/api/client"
- "github.com/docker/docker/cli"
- "github.com/docker/engine-api/types"
- "github.com/spf13/cobra"
- )
- type removeOptions struct {
- force bool
- noPrune bool
- }
- // NewRemoveCommand create a new `docker remove` command
- func NewRemoveCommand(dockerCli *client.DockerCli) *cobra.Command {
- var opts removeOptions
- cmd := &cobra.Command{
- Use: "rmi [OPTIONS] IMAGE [IMAGE...]",
- Short: "Remove one or more images",
- Args: cli.RequiresMinArgs(1),
- RunE: func(cmd *cobra.Command, args []string) error {
- return runRemove(dockerCli, opts, args)
- },
- }
- flags := cmd.Flags()
- flags.BoolVarP(&opts.force, "force", "f", false, "Force removal of the image")
- flags.BoolVar(&opts.noPrune, "no-prune", false, "Do not delete untagged parents")
- return cmd
- }
- func runRemove(dockerCli *client.DockerCli, opts removeOptions, images []string) error {
- client := dockerCli.Client()
- ctx := context.Background()
- options := types.ImageRemoveOptions{
- Force: opts.force,
- PruneChildren: !opts.noPrune,
- }
- var errs []string
- for _, image := range images {
- dels, err := client.ImageRemove(ctx, image, options)
- if err != nil {
- errs = append(errs, err.Error())
- } else {
- for _, del := range dels {
- if del.Deleted != "" {
- fmt.Fprintf(dockerCli.Out(), "Deleted: %s\n", del.Deleted)
- } else {
- fmt.Fprintf(dockerCli.Out(), "Untagged: %s\n", del.Untagged)
- }
- }
- }
- }
- if len(errs) > 0 {
- return fmt.Errorf("%s", strings.Join(errs, "\n"))
- }
- return nil
- }
|