From f69a613e69f4472fb32638726936fff55c5b95a3 Mon Sep 17 00:00:00 2001 From: Nicolas De Loof Date: Thu, 18 Nov 2021 12:40:08 +0100 Subject: [PATCH] don't SetRawTerminal when run is ran with -T Signed-off-by: Nicolas De Loof --- pkg/compose/run.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/compose/run.go b/pkg/compose/run.go index b9418d7c1..191faf4b7 100644 --- a/pkg/compose/run.go +++ b/pkg/compose/run.go @@ -62,7 +62,7 @@ func (s *composeService) runInteractive(ctx context.Context, containerID string, } in := streams.NewIn(opts.Stdin) - if in.IsTerminal() { + if in.IsTerminal() && opts.Tty { state, err := term.SetRawTerminal(in.FD()) if err != nil { return 0, err