1234567891011121314151617181920212223 |
- package daemon
- import (
- "github.com/docker/docker/context"
- derr "github.com/docker/docker/errors"
- )
- // 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.
- func (daemon *Daemon) ContainerRestart(ctx context.Context, name string, seconds int) error {
- container, err := daemon.Get(ctx, name)
- if err != nil {
- return err
- }
- if err := container.Restart(ctx, seconds); err != nil {
- return derr.ErrorCodeCantRestart.WithArgs(name, err)
- }
- return nil
- }
|