1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #11060 from dmitrygusev/docs-improvements

Docs improvements typo fixes and consistency
This commit is contained in:
moxiegirl 2015-03-02 06:46:17 -08:00
commit 6bbf5c3e99
2 changed files with 3 additions and 3 deletions

View file

@ -357,7 +357,7 @@ It can simply start Postgres:
Or, it can be used to run Postgres and pass parameters to the server: Or, it can be used to run Postgres and pass parameters to the server:
$ docker run postgres postres --help $ docker run postgres postgres --help
Lastly, it could also be used to start a totally different tool, such Bash: Lastly, it could also be used to start a totally different tool, such Bash:

View file

@ -33,8 +33,8 @@ To list the help on any command just execute the command, followed by the `--hel
## Option types ## Option types
Single character command line options can be combined, so rather than Single character command line options can be combined, so rather than
typing `docker run -t -i --name test busybox sh`, typing `docker run -i -t --name test busybox sh`,
you can write `docker run -ti --name test busybox sh`. you can write `docker run -it --name test busybox sh`.
### Boolean ### Boolean