mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
d7d512bb92
This is more aligned with `Daemon.GetImage` and less confusing. Signed-off-by: David Calavera <david.calavera@gmail.com>
33 lines
922 B
Go
33 lines
922 B
Go
package daemon
|
|
|
|
import derr "github.com/docker/docker/errors"
|
|
|
|
// ContainerResize changes the size of the TTY of the process running
|
|
// in the container with the given name to the given height and width.
|
|
func (daemon *Daemon) ContainerResize(name string, height, width int) error {
|
|
container, err := daemon.GetContainer(name)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if !container.IsRunning() {
|
|
return derr.ErrorCodeNotRunning.WithArgs(container.ID)
|
|
}
|
|
|
|
if err = container.Resize(height, width); err == nil {
|
|
daemon.LogContainerEvent(container, "resize")
|
|
}
|
|
return err
|
|
}
|
|
|
|
// ContainerExecResize changes the size of the TTY of the process
|
|
// running in the exec with the given name to the given height and
|
|
// width.
|
|
func (daemon *Daemon) ContainerExecResize(name string, height, width int) error {
|
|
ExecConfig, err := daemon.getExecConfig(name)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return ExecConfig.Resize(height, width)
|
|
}
|