mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
be6bce6ab8
Addresses #8107 Docker-DCO-1.1-Signed-off-by: Phil Estes <estesp@linux.vnet.ibm.com>
20 lines
462 B
Go
20 lines
462 B
Go
package daemon
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/docker/docker/engine"
|
|
)
|
|
|
|
func (daemon *Daemon) ContainerWait(job *engine.Job) engine.Status {
|
|
if len(job.Args) != 1 {
|
|
return job.Errorf("Usage: %s", job.Name)
|
|
}
|
|
name := job.Args[0]
|
|
if container := daemon.Get(name); container != nil {
|
|
status, _ := container.WaitStop(-1 * time.Second)
|
|
job.Printf("%d\n", status)
|
|
return engine.StatusOK
|
|
}
|
|
return job.Errorf("%s: No such container: %s", job.Name, name)
|
|
}
|