mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
5670c6c695
Signed-off-by: Antonio Murdaca <me@runcom.ninja>
31 lines
849 B
Go
31 lines
849 B
Go
package client
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
flag "github.com/docker/docker/pkg/mflag"
|
|
)
|
|
|
|
// CmdWait blocks until a container stops, then prints its exit code.
|
|
//
|
|
// If more than one container is specified, this will wait synchronously on each container.
|
|
//
|
|
// Usage: docker wait CONTAINER [CONTAINER...]
|
|
func (cli *DockerCli) CmdWait(args ...string) error {
|
|
cmd := cli.Subcmd("wait", "CONTAINER [CONTAINER...]", "Block until a container stops, then print its exit code.", true)
|
|
cmd.Require(flag.Min, 1)
|
|
|
|
cmd.ParseFlags(args, true)
|
|
|
|
var encounteredError error
|
|
for _, name := range cmd.Args() {
|
|
status, err := waitForExit(cli, name)
|
|
if err != nil {
|
|
fmt.Fprintf(cli.err, "%s\n", err)
|
|
encounteredError = fmt.Errorf("Error: failed to wait one or more containers")
|
|
} else {
|
|
fmt.Fprintf(cli.out, "%d\n", status)
|
|
}
|
|
}
|
|
return encounteredError
|
|
}
|