diff --git a/cli/command/container/logs.go b/cli/command/container/logs.go index b5b526f2e2..d9bc73baff 100644 --- a/cli/command/container/logs.go +++ b/cli/command/container/logs.go @@ -50,6 +50,11 @@ func NewLogsCommand(dockerCli command.Cli) *cobra.Command { func runLogs(dockerCli command.Cli, opts *logsOptions) error { ctx := context.Background() + c, err := dockerCli.Client().ContainerInspect(ctx, opts.container) + if err != nil { + return err + } + options := types.ContainerLogsOptions{ ShowStdout: true, ShowStderr: true, @@ -60,17 +65,12 @@ func runLogs(dockerCli command.Cli, opts *logsOptions) error { Tail: opts.tail, Details: opts.details, } - responseBody, err := dockerCli.Client().ContainerLogs(ctx, opts.container, options) + responseBody, err := dockerCli.Client().ContainerLogs(ctx, c.ID, options) if err != nil { return err } defer responseBody.Close() - c, err := dockerCli.Client().ContainerInspect(ctx, opts.container) - if err != nil { - return err - } - if c.Config.Tty { _, err = io.Copy(dockerCli.Out(), responseBody) } else {