mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
f7d4b4fe2b
Signed-off-by: Doug Davis <dug@us.ibm.com>
19 lines
361 B
Go
19 lines
361 B
Go
package daemon
|
|
|
|
import (
|
|
derr "github.com/docker/docker/api/errors"
|
|
)
|
|
|
|
// ContainerUnpause unpauses a container
|
|
func (daemon *Daemon) ContainerUnpause(name string) error {
|
|
container, err := daemon.Get(name)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := container.unpause(); err != nil {
|
|
return derr.ErrorCodeCantUnpause.WithArgs(name, err)
|
|
}
|
|
|
|
return nil
|
|
}
|