Signed-off-by: Shijiang Wei <mountkin@gmail.com>
| ... | ... |
@@ -22,7 +22,7 @@ Using an existing container's name or ID you can create a new image. |
| 22 | 22 |
|
| 23 | 23 |
**-c** , **--change**=[] |
| 24 | 24 |
Apply specified Dockerfile instructions while committing the image |
| 25 |
- Supported Dockerfile instructions: `ADD`|`CMD`|`ENTRYPOINT`|`ENV`|`EXPOSE`|`FROM`|`MAINTAINER`|`RUN`|`USER`|`LABEL`|`VOLUME`|`WORKDIR`|`COPY` |
|
| 25 |
+ Supported Dockerfile instructions: `CMD`|`ENTRYPOINT`|`ENV`|`EXPOSE`|`ONBUILD`|`USER`|`VOLUME`|`WORKDIR` |
|
| 26 | 26 |
|
| 27 | 27 |
**--help** |
| 28 | 28 |
Print usage statement |
| ... | ... |
@@ -13,7 +13,7 @@ URL|- [REPOSITORY[:TAG]] |
| 13 | 13 |
# OPTIONS |
| 14 | 14 |
**-c**, **--change**=[] |
| 15 | 15 |
Apply specified Dockerfile instructions while importing the image |
| 16 |
- Supported Dockerfile instructions: `ADD`|`CMD`|`ENTRYPOINT`|`ENV`|`EXPOSE`|`FROM`|`MAINTAINER`|`RUN`|`USER`|`LABEL`|`VOLUME`|`WORKDIR`|`COPY` |
|
| 16 |
+ Supported Dockerfile instructions: `CMD`|`ENTRYPOINT`|`ENV`|`EXPOSE`|`ONBUILD`|`USER`|`VOLUME`|`WORKDIR` |
|
| 17 | 17 |
|
| 18 | 18 |
# DESCRIPTION |
| 19 | 19 |
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. |
| 839 | 839 |
|
| 840 | 840 |
The `--change` option will apply `Dockerfile` instructions to the image |
| 841 | 841 |
that is created. |
| 842 |
-Supported `Dockerfile` instructions: `ADD`|`CMD`|`ENTRYPOINT`|`ENV`|`EXPOSE`|`FROM`|`MAINTAINER`|`RUN`|`USER`|`LABEL`|`VOLUME`|`WORKDIR`|`COPY` |
|
| 842 |
+Supported `Dockerfile` instructions: |
|
| 843 |
+`CMD`|`ENTRYPOINT`|`ENV`|`EXPOSE`|`ONBUILD`|`USER`|`VOLUME`|`WORKDIR` |
|
| 843 | 844 |
|
| 844 | 845 |
#### Commit a container |
| 845 | 846 |
|
| ... | ... |
@@ -1347,8 +1348,8 @@ the `-` parameter to take the data from `STDIN`. |
| 1347 | 1347 |
|
| 1348 | 1348 |
The `--change` option will apply `Dockerfile` instructions to the image |
| 1349 | 1349 |
that is created. |
| 1350 |
-Supported `Dockerfile` instructions: `CMD`, `ENTRYPOINT`, `ENV`, `EXPOSE`, |
|
| 1351 |
-`ONBUILD`, `USER`, `VOLUME`, `WORKDIR` |
|
| 1350 |
+Supported `Dockerfile` instructions: |
|
| 1351 |
+`CMD`|`ENTRYPOINT`|`ENV`|`EXPOSE`|`ONBUILD`|`USER`|`VOLUME`|`WORKDIR` |
|
| 1352 | 1352 |
|
| 1353 | 1353 |
#### Examples |
| 1354 | 1354 |
|