2014-07-31 16:48:23 -04:00
|
|
|
package daemon
|
|
|
|
|
2015-09-18 13:48:16 -04:00
|
|
|
import (
|
2015-11-12 14:55:17 -05:00
|
|
|
"github.com/docker/docker/container"
|
2015-09-18 13:48:16 -04:00
|
|
|
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 {
|
2015-12-11 12:39:28 -05:00
|
|
|
container, err := daemon.GetContainer(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-11-02 18:25:26 -05:00
|
|
|
if err := daemon.containerRestart(container, 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
|
|
|
}
|
2015-11-02 18:25:26 -05:00
|
|
|
|
|
|
|
// containerRestart attempts to gracefully stop and then start the
|
|
|
|
// container. When stopping, wait for the given duration in seconds to
|
|
|
|
// gracefully stop, before forcefully terminating the container. If
|
|
|
|
// given a negative duration, wait forever for a graceful stop.
|
2015-11-12 14:55:17 -05:00
|
|
|
func (daemon *Daemon) containerRestart(container *container.Container, seconds int) error {
|
2015-11-02 18:25:26 -05:00
|
|
|
// Avoid unnecessarily unmounting and then directly mounting
|
|
|
|
// the container when the container stops and then starts
|
|
|
|
// again
|
2015-11-02 20:06:09 -05:00
|
|
|
if err := daemon.Mount(container); err == nil {
|
|
|
|
defer daemon.Unmount(container)
|
2015-11-02 18:25:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if err := daemon.containerStop(container, seconds); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-11-02 20:06:09 -05:00
|
|
|
if err := daemon.containerStart(container); err != nil {
|
2015-11-02 18:25:26 -05:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-11-03 12:33:13 -05:00
|
|
|
daemon.LogContainerEvent(container, "restart")
|
2015-11-02 18:25:26 -05:00
|
|
|
return nil
|
|
|
|
}
|