Docker-DCO-1.1-Signed-off-by: Sven Dowideit <SvenDowideit@home.org.au> (github: SvenDowideit)
| ... | ... |
@@ -136,7 +136,7 @@ func (cli *DockerCli) CmdInsert(args ...string) error {
|
| 136 | 136 |
func (cli *DockerCli) CmdBuild(args ...string) error {
|
| 137 | 137 |
cmd := cli.Subcmd("build", "[OPTIONS] PATH | URL | -", "Build a new container image from the source code at PATH")
|
| 138 | 138 |
tag := cmd.String([]string{"t", "-tag"}, "", "Repository name (and optionally a tag) to be applied to the resulting image in case of success")
|
| 139 |
- suppressOutput := cmd.Bool([]string{"q", "-quiet"}, false, "Suppress verbose build output")
|
|
| 139 |
+ suppressOutput := cmd.Bool([]string{"q", "-quiet"}, false, "Suppress the verbose output generated by the containers")
|
|
| 140 | 140 |
noCache := cmd.Bool([]string{"#no-cache", "-no-cache"}, false, "Do not use cache when building the image")
|
| 141 | 141 |
rm := cmd.Bool([]string{"#rm", "-rm"}, false, "Remove intermediate containers after a successful build")
|
| 142 | 142 |
if err := cmd.Parse(args); err != nil {
|
| ... | ... |
@@ -186,7 +186,7 @@ Examples: |
| 186 | 186 |
Build a new container image from the source code at PATH |
| 187 | 187 |
-t, --time="": Repository name (and optionally a tag) to be applied |
| 188 | 188 |
to the resulting image in case of success. |
| 189 |
- -q, --quiet=false: Suppress verbose build output. |
|
| 189 |
+ -q, --quiet=false: Suppress the verbose output generated by the containers. |
|
| 190 | 190 |
--no-cache: Do not use the cache when building the image. |
| 191 | 191 |
--rm: Remove intermediate containers after a successful build |
| 192 | 192 |
|