mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
e0339d4b88
Signed-off-by: Alexandr Morozov <lk4d4math@gmail.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)
|
|
}
|