Merge pull request #13764 from bcexelbi/bexelbie_man_typo

Fixing typo in Dockerfile manpage
Upstream-commit: 3c132ff62d49247abed25a5686611bcac6801b23
Component: engine
This commit is contained in:
James Turnbull
2015-06-06 08:50:27 -04:00
+1 -1
View File
@@ -246,7 +246,7 @@ A Dockerfile is similar to a Makefile.
passes the -d argument to the **ENTRYPOINT**. Specify parameters either in the
**ENTRYPOINT** JSON array (as in the preferred exec form above), or by using a **CMD**
statement. Parameters in the **ENTRYPOINT** are not overwritten by the docker run
arguments. Parameters specifies via **CMD** are overwritten by docker run
arguments. Parameters specified via **CMD** are overwritten by docker run
arguments. Specify a plain string for the **ENTRYPOINT**, and it will execute in
`/bin/sh -c`, like a **CMD** instruction: