2016-09-08 13:11:39 -04:00
|
|
|
package image
|
|
|
|
|
|
|
|
import (
|
2018-05-03 21:02:44 -04:00
|
|
|
"context"
|
2016-09-08 13:11:39 -04:00
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
|
2017-04-17 18:07:56 -04:00
|
|
|
"github.com/docker/cli/cli"
|
|
|
|
"github.com/docker/cli/cli/command"
|
2024-07-03 11:42:29 -04:00
|
|
|
"github.com/docker/cli/cli/command/completion"
|
2024-01-24 08:32:07 -05:00
|
|
|
"github.com/docker/docker/api/types/image"
|
2023-05-10 08:43:18 -04:00
|
|
|
"github.com/docker/docker/errdefs"
|
2017-03-09 13:23:45 -05:00
|
|
|
"github.com/pkg/errors"
|
2016-09-08 13:11:39 -04:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
type removeOptions struct {
|
|
|
|
force bool
|
|
|
|
noPrune bool
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewRemoveCommand creates a new `docker remove` command
|
2017-03-30 20:21:14 -04:00
|
|
|
func NewRemoveCommand(dockerCli command.Cli) *cobra.Command {
|
2016-09-08 13:11:39 -04:00
|
|
|
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 {
|
2023-09-09 18:27:44 -04:00
|
|
|
return runRemove(cmd.Context(), dockerCli, opts, args)
|
2016-09-08 13:11:39 -04:00
|
|
|
},
|
2024-07-03 11:42:29 -04:00
|
|
|
ValidArgsFunction: completion.ImageNames(dockerCli),
|
cli: use custom annotation for aliases
Cobra allows for aliases to be defined for a command, but only allows these
to be defined at the same level (for example, `docker image ls` as alias for
`docker image list`). Our CLI has some commands that are available both as a
top-level shorthand as well as `docker <object> <verb>` subcommands. For example,
`docker ps` is a shorthand for `docker container ps` / `docker container ls`.
This patch introduces a custom "aliases" annotation that can be used to print
all available aliases for a command. While this requires these aliases to be
defined manually, in practice the list of aliases rarely changes, so maintenance
should be minimal.
As a convention, we could consider the first command in this list to be the
canonical command, so that we can use this information to add redirects in
our documentation in future.
Before this patch:
docker images --help
Usage: docker images [OPTIONS] [REPOSITORY[:TAG]]
List images
Options:
-a, --all Show all images (default hides intermediate images)
...
With this patch:
docker images --help
Usage: docker images [OPTIONS] [REPOSITORY[:TAG]]
List images
Aliases:
docker image ls, docker image list, docker images
Options:
-a, --all Show all images (default hides intermediate images)
...
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2022-06-28 04:52:25 -04:00
|
|
|
Annotations: map[string]string{
|
|
|
|
"aliases": "docker image rm, docker image remove, docker rmi",
|
|
|
|
},
|
2016-09-08 13:11:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2017-03-30 20:21:14 -04:00
|
|
|
func newRemoveCommand(dockerCli command.Cli) *cobra.Command {
|
2016-06-23 13:03:40 -04:00
|
|
|
cmd := *NewRemoveCommand(dockerCli)
|
|
|
|
cmd.Aliases = []string{"rmi", "remove"}
|
|
|
|
cmd.Use = "rm [OPTIONS] IMAGE [IMAGE...]"
|
|
|
|
return &cmd
|
|
|
|
}
|
|
|
|
|
2023-09-09 18:27:44 -04:00
|
|
|
func runRemove(ctx context.Context, dockerCli command.Cli, opts removeOptions, images []string) error {
|
2016-09-08 13:11:39 -04:00
|
|
|
client := dockerCli.Client()
|
|
|
|
|
2024-01-24 08:32:07 -05:00
|
|
|
options := image.RemoveOptions{
|
2016-09-08 13:11:39 -04:00
|
|
|
Force: opts.force,
|
|
|
|
PruneChildren: !opts.noPrune,
|
|
|
|
}
|
|
|
|
|
|
|
|
var errs []string
|
2022-09-29 11:21:51 -04:00
|
|
|
fatalErr := false
|
2017-06-06 16:33:05 -04:00
|
|
|
for _, img := range images {
|
|
|
|
dels, err := client.ImageRemove(ctx, img, options)
|
2016-09-08 13:11:39 -04:00
|
|
|
if err != nil {
|
2023-05-10 08:43:18 -04:00
|
|
|
if !errdefs.IsNotFound(err) {
|
2017-08-04 16:25:29 -04:00
|
|
|
fatalErr = true
|
|
|
|
}
|
2016-09-08 13:11:39 -04:00
|
|
|
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)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-13 14:51:41 -04:00
|
|
|
if len(errs) > 0 {
|
|
|
|
msg := strings.Join(errs, "\n")
|
2017-08-04 16:25:29 -04:00
|
|
|
if !opts.force || fatalErr {
|
2017-06-13 14:51:41 -04:00
|
|
|
return errors.New(msg)
|
|
|
|
}
|
2018-01-16 03:29:53 -05:00
|
|
|
fmt.Fprintln(dockerCli.Err(), msg)
|
2016-09-08 13:11:39 -04:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|