|
@@ -1,5 +1,7 @@
|
|
|
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 {
|
|
@@ -8,6 +10,10 @@ func (daemon *Daemon) ContainerResize(name string, height, width int) error {
|
|
|
return err
|
|
|
}
|
|
|
|
|
|
+ if !container.IsRunning() {
|
|
|
+ return derr.ErrorCodeNotRunning.WithArgs(container.ID)
|
|
|
+ }
|
|
|
+
|
|
|
if err = container.Resize(height, width); err == nil {
|
|
|
daemon.LogContainerEvent(container, "resize")
|
|
|
}
|