2014-07-31 16:40:15 -04:00
|
|
|
package daemon
|
|
|
|
|
2015-09-16 14:56:26 -04:00
|
|
|
import (
|
2015-09-17 14:54:14 -04:00
|
|
|
derr "github.com/docker/docker/errors"
|
2015-09-16 14:56:26 -04:00
|
|
|
)
|
2015-03-25 03:44:12 -04:00
|
|
|
|
2015-07-30 17:01:53 -04:00
|
|
|
// ContainerStop looks for the given container and terminates it,
|
|
|
|
// waiting the given number of seconds before forcefully killing the
|
|
|
|
// container. If a negative number of seconds is given, ContainerStop
|
|
|
|
// will wait for a graceful termination. An error is returned if the
|
|
|
|
// container is not found, is already stopped, or if there is a
|
|
|
|
// problem stopping the container.
|
2015-09-29 13:51:40 -04:00
|
|
|
func (daemon *Daemon) ContainerStop(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:40:15 -04:00
|
|
|
}
|
2014-12-16 18:06:35 -05:00
|
|
|
if !container.IsRunning() {
|
2015-09-16 14:56:26 -04:00
|
|
|
return derr.ErrorCodeStopped
|
2014-12-16 18:06:35 -05:00
|
|
|
}
|
2015-09-29 13:51:40 -04:00
|
|
|
if err := container.Stop(seconds); err != nil {
|
2015-09-16 14:56:26 -04:00
|
|
|
return derr.ErrorCodeCantStop.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:40:15 -04:00
|
|
|
}
|