Correcting the name and url for the Dockerfile instruction that sets the default command to run in an image

This commit is contained in:
mbargar 2013-12-20 16:09:23 -05:00
parent 4d7d47086f
commit 396d1bb7c1
1 changed files with 2 additions and 2 deletions

View File

@ -92,8 +92,8 @@ to the name, the `run` method accepts a set of options, all optional:
but can also be given here as an option. but can also be given here as an option.
* `cmd` (string) - The command to start within the container. If not specified, * `cmd` (string) - The command to start within the container. If not specified,
then the container's default "run" command will be used, such as the then the container's default command will be used, such as the
"run" command [specified on the `Dockerfile`](http://docs.docker.io/en/latest/use/builder/#run). "CMD" command [specified in the `Dockerfile`](http://docs.docker.io/en/latest/use/builder/#cmd).
* `args` (string) - Extra arguments for [`docker run`](http://docs.docker.io/en/latest/commandline/cli/#run) * `args` (string) - Extra arguments for [`docker run`](http://docs.docker.io/en/latest/commandline/cli/#run)
on the command line. These are raw arguments that are passed directly to Docker. on the command line. These are raw arguments that are passed directly to Docker.