mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
febbe38796
Signed-off-by: Tibor Vass <tibor@docker.com>
50 lines
1.2 KiB
Go
50 lines
1.2 KiB
Go
package container
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/docker/docker/cli"
|
|
"github.com/docker/docker/cli/command"
|
|
"github.com/pkg/errors"
|
|
"github.com/spf13/cobra"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
type unpauseOptions struct {
|
|
containers []string
|
|
}
|
|
|
|
// NewUnpauseCommand creates a new cobra.Command for `docker unpause`
|
|
func NewUnpauseCommand(dockerCli *command.DockerCli) *cobra.Command {
|
|
var opts unpauseOptions
|
|
|
|
cmd := &cobra.Command{
|
|
Use: "unpause CONTAINER [CONTAINER...]",
|
|
Short: "Unpause all processes within one or more containers",
|
|
Args: cli.RequiresMinArgs(1),
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
opts.containers = args
|
|
return runUnpause(dockerCli, &opts)
|
|
},
|
|
}
|
|
return cmd
|
|
}
|
|
|
|
func runUnpause(dockerCli *command.DockerCli, opts *unpauseOptions) error {
|
|
ctx := context.Background()
|
|
|
|
var errs []string
|
|
errChan := parallelOperation(ctx, opts.containers, dockerCli.Client().ContainerUnpause)
|
|
for _, container := range opts.containers {
|
|
if err := <-errChan; err != nil {
|
|
errs = append(errs, err.Error())
|
|
continue
|
|
}
|
|
fmt.Fprintln(dockerCli.Out(), container)
|
|
}
|
|
if len(errs) > 0 {
|
|
return errors.New(strings.Join(errs, "\n"))
|
|
}
|
|
return nil
|
|
}
|