diff --git a/cli/command/container/create.go b/cli/command/container/create.go index eaa4720c42..4f9a71091b 100644 --- a/cli/command/container/create.go +++ b/cli/command/container/create.go @@ -263,6 +263,8 @@ func createContainer(ctx context.Context, dockerCli command.Cli, containerConfig } } + hostConfig.ConsoleSize[0], hostConfig.ConsoleSize[1] = dockerCli.Out().GetTtySize() + response, err := dockerCli.Client().ContainerCreate(ctx, config, hostConfig, networkingConfig, platform, opts.name) if err != nil { // Pull image if it does not exist locally and we have the PullImageMissing option. Default behavior. diff --git a/cli/command/container/run.go b/cli/command/container/run.go index 92748dca2d..d851709561 100644 --- a/cli/command/container/run.go +++ b/cli/command/container/run.go @@ -117,7 +117,6 @@ func runRun(dockerCli command.Cli, flags *pflag.FlagSet, ropts *runOptions, copt // nolint: gocyclo func runContainer(dockerCli command.Cli, opts *runOptions, copts *containerOptions, containerConfig *containerConfig) error { config := containerConfig.Config - hostConfig := containerConfig.HostConfig stdout, stderr := dockerCli.Out(), dockerCli.Err() client := dockerCli.Client() @@ -138,11 +137,6 @@ func runContainer(dockerCli command.Cli, opts *runOptions, copts *containerOptio config.StdinOnce = false } - // Currently ignored on Linux daemons, in the Linux case the TTY size is - // set by calling MonitorTtySize. - // A Windows daemon will create the process with the right TTY size - hostConfig.ConsoleSize[0], hostConfig.ConsoleSize[1] = dockerCli.Out().GetTtySize() - ctx, cancelFun := context.WithCancel(context.Background()) defer cancelFun()