This patch deprecates exported container commands and moves the implementation details to an unexported function. Commands that are affected include: - container.NewRunCommand - container.NewExecCommand - container.NewPsCommand - container.NewContainerCommand - container.NewAttachCommand - container.NewCommitCommand - container.NewCopyCommand - container.NewCreateCommand - container.NewDiffCommand - container.NewExportCommand - container.NewKillCommand - container.NewLogsCommand - container.NewPauseCommand - container.NewPortCommand - container.NewRenameCommand - container.NewRestartCommand - container.NewRmCommand - container.NewStartCommand - container.NewStatsCommand - container.NewStopCommand - container.NewTopCommand - container.NewUnpauseCommand - container.NewUpdateCommand - container.NewWaitCommand - container.NewPruneCommand Signed-off-by: Alano Terblanche <18033717+Benehiko@users.noreply.github.com>
95 lines
2.8 KiB
Go
95 lines
2.8 KiB
Go
package container
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/containerd/errdefs"
|
|
"github.com/docker/cli/cli"
|
|
"github.com/docker/cli/cli/command"
|
|
"github.com/docker/cli/cli/command/completion"
|
|
"github.com/moby/moby/api/types/container"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
type rmOptions struct {
|
|
rmVolumes bool
|
|
rmLink bool
|
|
force bool
|
|
|
|
containers []string
|
|
}
|
|
|
|
// NewRmCommand creates a new cobra.Command for `docker rm`
|
|
//
|
|
// Deprecated: Do not import commands directly. They will be removed in a future release.
|
|
func NewRmCommand(dockerCLI command.Cli) *cobra.Command {
|
|
return newRmCommand(dockerCLI)
|
|
}
|
|
|
|
func newRmCommand(dockerCLI command.Cli) *cobra.Command {
|
|
var opts rmOptions
|
|
|
|
cmd := &cobra.Command{
|
|
Use: "rm [OPTIONS] CONTAINER [CONTAINER...]",
|
|
Short: "Remove one or more containers",
|
|
Args: cli.RequiresMinArgs(1),
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
opts.containers = args
|
|
return runRm(cmd.Context(), dockerCLI, &opts)
|
|
},
|
|
Annotations: map[string]string{
|
|
"aliases": "docker container rm, docker container remove, docker rm",
|
|
},
|
|
ValidArgsFunction: completion.ContainerNames(dockerCLI, true, func(ctr container.Summary) bool {
|
|
return opts.force || ctr.State == container.StateExited || ctr.State == container.StateCreated
|
|
}),
|
|
}
|
|
|
|
flags := cmd.Flags()
|
|
flags.BoolVarP(&opts.rmVolumes, "volumes", "v", false, "Remove anonymous volumes associated with the container")
|
|
flags.BoolVarP(&opts.rmLink, "link", "l", false, "Remove the specified link")
|
|
flags.BoolVarP(&opts.force, "force", "f", false, "Force the removal of a running container (uses SIGKILL)")
|
|
return cmd
|
|
}
|
|
|
|
// newRemoveCommand adds subcommands for "docker container"; unlike the
|
|
// top-level "docker rm", it also adds a "remove" alias to support
|
|
// "docker container remove" in addition to "docker container rm".
|
|
func newRemoveCommand(dockerCli command.Cli) *cobra.Command {
|
|
cmd := *newRmCommand(dockerCli)
|
|
cmd.Aliases = []string{"rm", "remove"}
|
|
return &cmd
|
|
}
|
|
|
|
func runRm(ctx context.Context, dockerCLI command.Cli, opts *rmOptions) error {
|
|
apiClient := dockerCLI.Client()
|
|
errChan := parallelOperation(ctx, opts.containers, func(ctx context.Context, ctrID string) error {
|
|
ctrID = strings.Trim(ctrID, "/")
|
|
if ctrID == "" {
|
|
return errors.New("container name cannot be empty")
|
|
}
|
|
return apiClient.ContainerRemove(ctx, ctrID, container.RemoveOptions{
|
|
RemoveVolumes: opts.rmVolumes,
|
|
RemoveLinks: opts.rmLink,
|
|
Force: opts.force,
|
|
})
|
|
})
|
|
|
|
var errs []error
|
|
for _, name := range opts.containers {
|
|
if err := <-errChan; err != nil {
|
|
if opts.force && errdefs.IsNotFound(err) {
|
|
_, _ = fmt.Fprintln(dockerCLI.Err(), err)
|
|
continue
|
|
}
|
|
errs = append(errs, err)
|
|
continue
|
|
}
|
|
_, _ = fmt.Fprintln(dockerCLI.Out(), name)
|
|
}
|
|
return errors.Join(errs...)
|
|
}
|