2015-05-05 20:25:05 +00:00
|
|
|
package daemon
|
|
|
|
|
2015-09-29 17:51:40 +00:00
|
|
|
import "time"
|
2015-05-05 20:25:05 +00:00
|
|
|
|
2015-07-30 21:01:53 +00:00
|
|
|
// ContainerWait stops processing until the given container is
|
|
|
|
// stopped. If the container is not found, an error is returned. On a
|
|
|
|
// successful stop, the exit code of the container is returned. On a
|
|
|
|
// timeout, an error is returned. If you want to wait forever, supply
|
|
|
|
// a negative duration for the timeout.
|
2015-09-29 17:51:40 +00:00
|
|
|
func (daemon *Daemon) ContainerWait(name string, timeout time.Duration) (int, error) {
|
2015-12-11 17:39:28 +00:00
|
|
|
container, err := daemon.GetContainer(name)
|
2015-05-05 20:25:05 +00:00
|
|
|
if err != nil {
|
|
|
|
return -1, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return container.WaitStop(timeout)
|
|
|
|
}
|