2016-06-06 10:15:46 -04:00
|
|
|
package container
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
2016-06-08 02:05:18 -04:00
|
|
|
"time"
|
2016-06-06 10:15:46 -04:00
|
|
|
|
|
|
|
"github.com/docker/docker/cli"
|
2016-09-08 13:11:39 -04:00
|
|
|
"github.com/docker/docker/cli/command"
|
2017-03-27 21:21:59 -04:00
|
|
|
"github.com/pkg/errors"
|
2016-06-06 10:15:46 -04:00
|
|
|
"github.com/spf13/cobra"
|
2016-12-24 19:05:37 -05:00
|
|
|
"golang.org/x/net/context"
|
2016-06-06 10:15:46 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
type restartOptions struct {
|
2016-06-06 23:29:05 -04:00
|
|
|
nSeconds int
|
|
|
|
nSecondsChanged bool
|
2016-06-06 10:15:46 -04:00
|
|
|
|
|
|
|
containers []string
|
|
|
|
}
|
|
|
|
|
2016-06-21 03:28:30 -04:00
|
|
|
// NewRestartCommand creates a new cobra.Command for `docker restart`
|
2016-09-08 13:11:39 -04:00
|
|
|
func NewRestartCommand(dockerCli *command.DockerCli) *cobra.Command {
|
2016-06-06 10:15:46 -04:00
|
|
|
var opts restartOptions
|
|
|
|
|
|
|
|
cmd := &cobra.Command{
|
|
|
|
Use: "restart [OPTIONS] CONTAINER [CONTAINER...]",
|
2016-08-30 11:07:42 -04:00
|
|
|
Short: "Restart one or more containers",
|
2016-06-06 10:15:46 -04:00
|
|
|
Args: cli.RequiresMinArgs(1),
|
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
|
|
opts.containers = args
|
2016-06-06 23:29:05 -04:00
|
|
|
opts.nSecondsChanged = cmd.Flags().Changed("time")
|
2016-06-06 10:15:46 -04:00
|
|
|
return runRestart(dockerCli, &opts)
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
flags := cmd.Flags()
|
|
|
|
flags.IntVarP(&opts.nSeconds, "time", "t", 10, "Seconds to wait for stop before killing the container")
|
|
|
|
return cmd
|
|
|
|
}
|
|
|
|
|
2016-09-08 13:11:39 -04:00
|
|
|
func runRestart(dockerCli *command.DockerCli, opts *restartOptions) error {
|
2016-06-09 11:58:10 -04:00
|
|
|
ctx := context.Background()
|
2016-06-06 10:15:46 -04:00
|
|
|
var errs []string
|
2016-06-06 23:29:05 -04:00
|
|
|
var timeout *time.Duration
|
|
|
|
if opts.nSecondsChanged {
|
|
|
|
timeoutValue := time.Duration(opts.nSeconds) * time.Second
|
|
|
|
timeout = &timeoutValue
|
|
|
|
}
|
|
|
|
|
2016-06-06 10:15:46 -04:00
|
|
|
for _, name := range opts.containers {
|
2016-06-06 23:29:05 -04:00
|
|
|
if err := dockerCli.Client().ContainerRestart(ctx, name, timeout); err != nil {
|
2016-06-06 10:15:46 -04:00
|
|
|
errs = append(errs, err.Error())
|
2016-12-24 19:05:37 -05:00
|
|
|
continue
|
2016-06-06 10:15:46 -04:00
|
|
|
}
|
2016-12-24 19:05:37 -05:00
|
|
|
fmt.Fprintln(dockerCli.Out(), name)
|
2016-06-06 10:15:46 -04:00
|
|
|
}
|
|
|
|
if len(errs) > 0 {
|
2016-12-24 19:05:37 -05:00
|
|
|
return errors.New(strings.Join(errs, "\n"))
|
2016-06-06 10:15:46 -04:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|