mirror of https://github.com/docker/docs.git
Fix #6509: Interactive container hangs when redirecting stdout
Cli IsTerminal() SYS_IOCTL operation should be determined from STDIN, not from STDOUT. Signed-off-by: Vojtech Vitek (V-Teq) <vvitek@redhat.com>
This commit is contained in:
parent
d369612b41
commit
40c7b53791
|
@ -104,7 +104,7 @@ func NewDockerCli(in io.ReadCloser, out, err io.Writer, proto, addr string, tlsC
|
||||||
}
|
}
|
||||||
|
|
||||||
if in != nil {
|
if in != nil {
|
||||||
if file, ok := out.(*os.File); ok {
|
if file, ok := in.(*os.File); ok {
|
||||||
terminalFd = file.Fd()
|
terminalFd = file.Fd()
|
||||||
isTerminal = term.IsTerminal(terminalFd)
|
isTerminal = term.IsTerminal(terminalFd)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue