mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
0d459f5ed3
Signed-off-by: allencloud <allen.sun@daocloud.io>
57 lines
1.3 KiB
Go
57 lines
1.3 KiB
Go
package container
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
"time"
|
|
|
|
"golang.org/x/net/context"
|
|
|
|
"github.com/docker/docker/api/client"
|
|
"github.com/docker/docker/cli"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
type stopOptions struct {
|
|
time int
|
|
|
|
containers []string
|
|
}
|
|
|
|
// NewStopCommand creates a new cobra.Command for `docker stop`
|
|
func NewStopCommand(dockerCli *client.DockerCli) *cobra.Command {
|
|
var opts stopOptions
|
|
|
|
cmd := &cobra.Command{
|
|
Use: "stop [OPTIONS] CONTAINER [CONTAINER...]",
|
|
Short: "Stop one or more running containers",
|
|
Args: cli.RequiresMinArgs(1),
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
opts.containers = args
|
|
return runStop(dockerCli, &opts)
|
|
},
|
|
}
|
|
cmd.SetFlagErrorFunc(flagErrorFunc)
|
|
|
|
flags := cmd.Flags()
|
|
flags.IntVarP(&opts.time, "time", "t", 10, "Seconds to wait for stop before killing it")
|
|
return cmd
|
|
}
|
|
|
|
func runStop(dockerCli *client.DockerCli, opts *stopOptions) error {
|
|
ctx := context.Background()
|
|
|
|
var errs []string
|
|
for _, container := range opts.containers {
|
|
timeout := time.Duration(opts.time) * time.Second
|
|
if err := dockerCli.Client().ContainerStop(ctx, container, &timeout); err != nil {
|
|
errs = append(errs, err.Error())
|
|
} else {
|
|
fmt.Fprintf(dockerCli.Out(), "%s\n", container)
|
|
}
|
|
}
|
|
if len(errs) > 0 {
|
|
return fmt.Errorf("%s", strings.Join(errs, "\n"))
|
|
}
|
|
return nil
|
|
}
|