瀏覽代碼

fix confusing description of stdout/stdin pipe

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Sebastiaan van Stijn 8 年之前
父節點
當前提交
c3dff2359d
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      docs/reference/run.md

+ 1 - 1
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