2015-03-24 23:57:23 -04:00
|
|
|
package client
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2015-05-01 10:26:40 -04:00
|
|
|
"strings"
|
2015-03-24 23:57:23 -04:00
|
|
|
|
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-04-22 02:45:18 -04:00
|
|
|
// CmdRm removes one or more containers.
|
|
|
|
//
|
|
|
|
// Usage: docker rm [OPTIONS] CONTAINER [CONTAINER...]
|
2015-03-24 23:57:23 -04:00
|
|
|
func (cli *DockerCli) CmdRm(args ...string) error {
|
2015-10-08 08:46:21 -04:00
|
|
|
cmd := Cli.Subcmd("rm", []string{"CONTAINER [CONTAINER...]"}, Cli.DockerCommands["rm"].Description, true)
|
2015-03-24 23:57:23 -04:00
|
|
|
v := cmd.Bool([]string{"v", "-volumes"}, false, "Remove the volumes associated with the container")
|
2015-11-09 09:37:24 -05:00
|
|
|
link := cmd.Bool([]string{"l", "-link"}, false, "Remove the specified link")
|
2015-03-24 23:57:23 -04:00
|
|
|
force := cmd.Bool([]string{"f", "-force"}, false, "Force the removal of a running container (uses SIGKILL)")
|
|
|
|
cmd.Require(flag.Min, 1)
|
|
|
|
|
2015-03-28 21:22:46 -04:00
|
|
|
cmd.ParseFlags(args, true)
|
2015-03-24 23:57:23 -04:00
|
|
|
|
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-04-10 12:53:40 -04:00
|
|
|
if name == "" {
|
|
|
|
return fmt.Errorf("Container name cannot be empty")
|
|
|
|
}
|
2015-05-01 10:26:40 -04:00
|
|
|
name = strings.Trim(name, "/")
|
2015-04-10 12:53:40 -04:00
|
|
|
|
2015-12-04 17:02:06 -05:00
|
|
|
options := types.ContainerRemoveOptions{
|
2015-12-04 12:53:57 -05:00
|
|
|
ContainerID: name,
|
|
|
|
RemoveVolumes: *v,
|
|
|
|
RemoveLinks: *link,
|
|
|
|
Force: *force,
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := cli.client.ContainerRemove(options); err != nil {
|
2015-12-29 09:03:39 -05:00
|
|
|
errs = append(errs, fmt.Sprintf("Failed to remove container (%s): %s", name, err))
|
2015-03-24 23:57:23 -04:00
|
|
|
} else {
|
|
|
|
fmt.Fprintf(cli.out, "%s\n", name)
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
}
|