2014-07-31 20:48:23 +00:00
|
|
|
package daemon
|
|
|
|
|
2015-09-18 17:48:16 +00:00
|
|
|
import (
|
2015-11-12 19:55:17 +00:00
|
|
|
"github.com/docker/docker/container"
|
2015-09-18 17:48:16 +00:00
|
|
|
derr "github.com/docker/docker/errors"
|
|
|
|
)
|
2015-03-25 07:44:12 +00:00
|
|
|
|
2015-07-30 21:01:53 +00: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 17:51:40 +00:00
|
|
|
func (daemon *Daemon) ContainerRestart(name string, seconds int) error {
|
2015-12-11 17:39:28 +00:00
|
|
|
container, err := daemon.GetContainer(name)
|
2014-12-16 23:06:35 +00:00
|
|
|
if err != nil {
|
2015-03-25 07:44:12 +00:00
|
|
|
return err
|
2014-07-31 20:48:23 +00:00
|
|
|
}
|
2015-11-02 23:25:26 +00:00
|
|
|
if err := daemon.containerRestart(container, seconds); err != nil {
|
2015-09-18 17:48:16 +00:00
|
|
|
return derr.ErrorCodeCantRestart.WithArgs(name, err)
|
2014-12-16 23:06:35 +00:00
|
|
|
}
|
2015-03-25 07:44:12 +00:00
|
|
|
return nil
|
2014-07-31 20:48:23 +00:00
|
|
|
}
|
2015-11-02 23:25:26 +00: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 19:55:17 +00:00
|
|
|
func (daemon *Daemon) containerRestart(container *container.Container, seconds int) error {
|
2015-11-02 23:25:26 +00:00
|
|
|
// Avoid unnecessarily unmounting and then directly mounting
|
|
|
|
// the container when the container stops and then starts
|
|
|
|
// again
|
2015-11-03 01:06:09 +00:00
|
|
|
if err := daemon.Mount(container); err == nil {
|
|
|
|
defer daemon.Unmount(container)
|
2015-11-02 23:25:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if err := daemon.containerStop(container, seconds); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-11-03 01:06:09 +00:00
|
|
|
if err := daemon.containerStart(container); err != nil {
|
2015-11-02 23:25:26 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-11-03 17:33:13 +00:00
|
|
|
daemon.LogContainerEvent(container, "restart")
|
2015-11-02 23:25:26 +00:00
|
|
|
return nil
|
|
|
|
}
|