mirror of https://github.com/docker/cli.git
Fix COPY/ADD quoted/json form
Minor tweak to the quoted/json form and made man page look like the Dockerfile docs. W/o the `,` people may think there should be a space delimited list. Signed-off-by: Doug Davis <dug@us.ibm.com>
This commit is contained in:
parent
5683dcc183
commit
0e820ef647
|
@ -492,7 +492,7 @@ change them using `docker run --env <key>=<value>`.
|
|||
ADD has two forms:
|
||||
|
||||
- `ADD <src>... <dest>`
|
||||
- `ADD ["<src>"... "<dest>"]` (this form is required for paths containing
|
||||
- `ADD ["<src>",... "<dest>"]` (this form is required for paths containing
|
||||
whitespace)
|
||||
|
||||
The `ADD` instruction copies new files, directories or remote file URLs from `<src>`
|
||||
|
@ -596,7 +596,7 @@ The copy obeys the following rules:
|
|||
COPY has two forms:
|
||||
|
||||
- `COPY <src>... <dest>`
|
||||
- `COPY ["<src>"... "<dest>"]` (this form is required for paths containing
|
||||
- `COPY ["<src>",... "<dest>"]` (this form is required for paths containing
|
||||
whitespace)
|
||||
|
||||
The `COPY` instruction copies new files or directories from `<src>`
|
||||
|
|
Loading…
Reference in New Issue