2014-07-31 16:48:23 -04:00
|
|
|
package daemon
|
|
|
|
|
2015-09-18 13:48:16 -04:00
|
|
|
import (
|
|
|
|
derr "github.com/docker/docker/errors"
|
|
|
|
)
|
2015-03-25 03:44:12 -04:00
|
|
|
|
2015-07-30 17:01:53 -04:00
|
|
|
// ContainerRestart stops and starts a container. It attempts to
|
|
|
|
// gracefully stop the container within the given timeout, forcefully
|
|
|
|
// stopping it if the timeout is exceeded. If given a negative
|
|
|
|
// timeout, ContainerRestart will wait forever until a graceful
|
|
|
|
// stop. Returns an error if the container cannot be found, or if
|
|
|
|
// there is an underlying error at any stage of the restart.
|
2015-09-29 13:51:40 -04:00
|
|
|
func (daemon *Daemon) ContainerRestart(name string, seconds int) error {
|
|
|
|
container, err := daemon.Get(name)
|
2014-12-16 18:06:35 -05:00
|
|
|
if err != nil {
|
2015-03-25 03:44:12 -04:00
|
|
|
return err
|
2014-07-31 16:48:23 -04:00
|
|
|
}
|
2015-09-29 13:51:40 -04:00
|
|
|
if err := container.Restart(seconds); err != nil {
|
2015-09-18 13:48:16 -04:00
|
|
|
return derr.ErrorCodeCantRestart.WithArgs(name, err)
|
2014-12-16 18:06:35 -05:00
|
|
|
}
|
2015-03-25 03:44:12 -04:00
|
|
|
return nil
|
2014-07-31 16:48:23 -04:00
|
|
|
}
|