Merge pull request #2697 from Ninjamoose/dockerCmdCorrection

website/docs: CMD command correction
This commit is contained in:
Mitchell Hashimoto 2013-12-28 12:58:54 -08:00
commit e403eb1525
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.