Docs: Add Spaces Around Parenthesis Where Needed

Signed-off-by: Alex Mayer <amayer5125@gmail.com>
This commit is contained in:
Alex Mayer 2018-09-28 17:40:22 -04:00
parent 00c0c7e12f
commit 2b0fdd0f17
4 changed files with 4 additions and 4 deletions

View File

@ -167,7 +167,7 @@ The docker login command is removing the ability to automatically register for a
**Target For Removal In Release: v17.06** **Target For Removal In Release: v17.06**
The flag `--security-opt` doesn't use the colon separator(`:`) anymore to divide keys and values, it uses the equal symbol(`=`) for consistency with other similar flags, like `--storage-opt`. The flag `--security-opt` doesn't use the colon separator (`:`) anymore to divide keys and values, it uses the equal symbol (`=`) for consistency with other similar flags, like `--storage-opt`.
### `/containers/(id or name)/copy` endpoint ### `/containers/(id or name)/copy` endpoint

View File

@ -1379,7 +1379,7 @@ Keep the following things in mind about volumes in the `Dockerfile`.
data within the volume after it has been declared, those changes will be discarded. data within the volume after it has been declared, those changes will be discarded.
- **JSON formatting**: The list is parsed as a JSON array. - **JSON formatting**: The list is parsed as a JSON array.
You must enclose words with double quotes (`"`)rather than single quotes (`'`). You must enclose words with double quotes (`"`) rather than single quotes (`'`).
- **The host directory is declared at container run-time**: The host directory - **The host directory is declared at container run-time**: The host directory
(the mountpoint) is, by its nature, host-dependent. This is to preserve image (the mountpoint) is, by its nature, host-dependent. This is to preserve image

View File

@ -418,7 +418,7 @@ $ docker run -l my-label --label com.example.foo=bar ubuntu bash
``` ```
The `my-label` key doesn't specify a value so the label defaults to an empty The `my-label` key doesn't specify a value so the label defaults to an empty
string(`""`). To add multiple labels, repeat the label flag (`-l` or `--label`). string (`""`). To add multiple labels, repeat the label flag (`-l` or `--label`).
The `key=value` must be unique to avoid overwriting the label value. If you The `key=value` must be unique to avoid overwriting the label value. If you
specify labels with identical keys but different values, each subsequent value specify labels with identical keys but different values, each subsequent value

View File

@ -1085,7 +1085,7 @@ per second from `/dev/sda`:
$ docker run -it --device-read-bps /dev/sda:1mb ubuntu $ docker run -it --device-read-bps /dev/sda:1mb ubuntu
The `--device-write-bps` flag limits the write rate (bytes per second)to a device. The `--device-write-bps` flag limits the write rate (bytes per second) to a device.
For example, this command creates a container and limits the write rate to `1mb` For example, this command creates a container and limits the write rate to `1mb`
per second for `/dev/sda`: per second for `/dev/sda`: