mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Remove some unsupported instructions in the docs.
Signed-off-by: Shijiang Wei <mountkin@gmail.com>
This commit is contained in:
parent
b7950b725b
commit
49be84842e
3 changed files with 6 additions and 5 deletions
|
@ -22,7 +22,7 @@ Using an existing container's name or ID you can create a new image.
|
||||||
|
|
||||||
**-c** , **--change**=[]
|
**-c** , **--change**=[]
|
||||||
Apply specified Dockerfile instructions while committing the image
|
Apply specified Dockerfile instructions while committing the image
|
||||||
Supported Dockerfile instructions: `ADD`|`CMD`|`ENTRYPOINT`|`ENV`|`EXPOSE`|`FROM`|`MAINTAINER`|`RUN`|`USER`|`LABEL`|`VOLUME`|`WORKDIR`|`COPY`
|
Supported Dockerfile instructions: `CMD`|`ENTRYPOINT`|`ENV`|`EXPOSE`|`ONBUILD`|`USER`|`VOLUME`|`WORKDIR`
|
||||||
|
|
||||||
**--help**
|
**--help**
|
||||||
Print usage statement
|
Print usage statement
|
||||||
|
|
|
@ -13,7 +13,7 @@ URL|- [REPOSITORY[:TAG]]
|
||||||
# OPTIONS
|
# OPTIONS
|
||||||
**-c**, **--change**=[]
|
**-c**, **--change**=[]
|
||||||
Apply specified Dockerfile instructions while importing the image
|
Apply specified Dockerfile instructions while importing the image
|
||||||
Supported Dockerfile instructions: `ADD`|`CMD`|`ENTRYPOINT`|`ENV`|`EXPOSE`|`FROM`|`MAINTAINER`|`RUN`|`USER`|`LABEL`|`VOLUME`|`WORKDIR`|`COPY`
|
Supported Dockerfile instructions: `CMD`|`ENTRYPOINT`|`ENV`|`EXPOSE`|`ONBUILD`|`USER`|`VOLUME`|`WORKDIR`
|
||||||
|
|
||||||
# DESCRIPTION
|
# DESCRIPTION
|
||||||
Create a new filesystem image from the contents of a tarball (`.tar`,
|
Create a new filesystem image from the contents of a tarball (`.tar`,
|
||||||
|
|
|
@ -839,7 +839,8 @@ If this behavior is undesired, set the 'p' option to false.
|
||||||
|
|
||||||
The `--change` option will apply `Dockerfile` instructions to the image
|
The `--change` option will apply `Dockerfile` instructions to the image
|
||||||
that is created.
|
that is created.
|
||||||
Supported `Dockerfile` instructions: `ADD`|`CMD`|`ENTRYPOINT`|`ENV`|`EXPOSE`|`FROM`|`MAINTAINER`|`RUN`|`USER`|`LABEL`|`VOLUME`|`WORKDIR`|`COPY`
|
Supported `Dockerfile` instructions:
|
||||||
|
`CMD`|`ENTRYPOINT`|`ENV`|`EXPOSE`|`ONBUILD`|`USER`|`VOLUME`|`WORKDIR`
|
||||||
|
|
||||||
#### Commit a container
|
#### Commit a container
|
||||||
|
|
||||||
|
@ -1347,8 +1348,8 @@ the `-` parameter to take the data from `STDIN`.
|
||||||
|
|
||||||
The `--change` option will apply `Dockerfile` instructions to the image
|
The `--change` option will apply `Dockerfile` instructions to the image
|
||||||
that is created.
|
that is created.
|
||||||
Supported `Dockerfile` instructions: `CMD`, `ENTRYPOINT`, `ENV`, `EXPOSE`,
|
Supported `Dockerfile` instructions:
|
||||||
`ONBUILD`, `USER`, `VOLUME`, `WORKDIR`
|
`CMD`|`ENTRYPOINT`|`ENV`|`EXPOSE`|`ONBUILD`|`USER`|`VOLUME`|`WORKDIR`
|
||||||
|
|
||||||
#### Examples
|
#### Examples
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue