1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #33085 from thaJeztah/docs-improve-pipe-description

fix confusing description of stdout/stdin pipe
This commit is contained in:
Sebastiaan van Stijn 2017-05-08 18:55:04 +02:00 committed by GitHub
commit dda41118b0

View file

@ -133,7 +133,7 @@ You can specify to which of the three standard streams (`STDIN`, `STDOUT`,
For interactive processes (like a shell), you must use `-i -t` together in
order to allocate a tty for the container process. `-i -t` is often written `-it`
as you'll see in later examples. Specifying `-t` is forbidden when the client
standard output is redirected or piped, such as in:
is receiving its standard input from a pipe, as in:
$ echo test | docker run -i busybox cat