Add option to pull images quietly

Add `--quiet` to the `docker image pull` subcommand that will not pull
the image quietly.

```
$ docker pull -q golang
Using default tag: latest
```

Signed-off-by: Vincent Demeester <vincent@sbr.pm>
This commit is contained in:
Vincent Demeester
2018-12-19 13:48:41 +01:00
parent 283d8f95c8
commit dd3407b6cc
9 changed files with 46 additions and 9 deletions

View File

@ -24,6 +24,7 @@ Options:
-a, --all-tags Download all tagged images in the repository
--disable-content-trust Skip image verification (default true)
--help Print usage
-q, --quiet Suppress verbose output
```
## Description