2015-05-05 16:25:05 -04:00
|
|
|
package daemon
|
|
|
|
|
2015-09-29 13:51:40 -04:00
|
|
|
import "time"
|
2015-05-05 16:25:05 -04:00
|
|
|
|
2015-07-30 17:01:53 -04: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 13:51:40 -04:00
|
|
|
func (daemon *Daemon) ContainerWait(name string, timeout time.Duration) (int, error) {
|
|
|
|
container, err := daemon.Get(name)
|
2015-05-05 16:25:05 -04:00
|
|
|
if err != nil {
|
|
|
|
return -1, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return container.WaitStop(timeout)
|
|
|
|
}
|