From 61c68f6c04de45f1f32ca14936ee9113bdd2cdf9 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Mon, 8 May 2017 15:33:14 +0200 Subject: [PATCH] fix confusing description of stdout/stdin pipe Signed-off-by: Sebastiaan van Stijn Upstream-commit: 6a767c171122df673f19817f0fe904cc9eb0131d Component: cli --- components/cli/docs/reference/run.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/cli/docs/reference/run.md b/components/cli/docs/reference/run.md index f5deddfec6..532acebad5 100644 --- a/components/cli/docs/reference/run.md +++ b/components/cli/docs/reference/run.md @@ -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