2014-07-31 20:48:23 +00:00
|
|
|
package daemon
|
|
|
|
|
2015-09-18 10:48:16 -07:00
|
|
|
import (
|
|
|
|
derr "github.com/docker/docker/errors"
|
|
|
|
)
|
2015-03-25 08:44:12 +01:00
|
|
|
|
2015-07-30 14:01:53 -07: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 15:06:35 -08:00
|
|
|
if err != nil {
|
2015-03-25 08:44:12 +01:00
|
|
|
return err
|
2014-07-31 20:48:23 +00:00
|
|
|
}
|
2015-09-29 13:51:40 -04:00
|
|
|
if err := container.Restart(seconds); err != nil {
|
2015-09-18 10:48:16 -07:00
|
|
|
return derr.ErrorCodeCantRestart.WithArgs(name, err)
|
2014-12-16 15:06:35 -08:00
|
|
|
}
|
2015-03-25 08:44:12 +01:00
|
|
|
return nil
|
2014-07-31 20:48:23 +00:00
|
|
|
}
|