moby--moby/daemon/resize.go

29 lines
797 B
Go
Raw Normal View History

package daemon
import (
"github.com/docker/docker/context"
)
// 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(ctx context.Context, name string, height, width int) error {
container, err := daemon.Get(ctx, name)
if err != nil {
return err
}
return container.Resize(ctx, height, width)
}
// 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(ctx context.Context, name string, height, width int) error {
ExecConfig, err := daemon.getExecConfig(name)
if err != nil {
return err
}
return ExecConfig.resize(height, width)
}