Fixing typo in Dockerfile manpage

Signed-off-by: Brian Exelbierd <bex@pobox.com>
Upstream-commit: d32e01be1ae7e72b4d9e4a6aeb462c60a8dc299c
Component: engine
This commit is contained in:
Brian (bex) Exelbierd
2015-06-05 16:33:11 +02:00
parent bc52a0bc7d
commit 8263a87e8d

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: