mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Fix markdown indentation level
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
a3ab46361e
commit
bda69e6142
1 changed files with 11 additions and 10 deletions
|
@ -267,22 +267,23 @@ The `reference` filter shows only images whose reference matches
|
||||||
the specified pattern.
|
the specified pattern.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ docker images
|
$ docker images
|
||||||
|
|
||||||
REPOSITORY TAG IMAGE ID CREATED SIZE
|
REPOSITORY TAG IMAGE ID CREATED SIZE
|
||||||
busybox latest e02e811dd08f 5 weeks ago 1.09 MB
|
busybox latest e02e811dd08f 5 weeks ago 1.09 MB
|
||||||
busybox uclibc e02e811dd08f 5 weeks ago 1.09 MB
|
busybox uclibc e02e811dd08f 5 weeks ago 1.09 MB
|
||||||
busybox musl 733eb3059dce 5 weeks ago 1.21 MB
|
busybox musl 733eb3059dce 5 weeks ago 1.21 MB
|
||||||
busybox glibc 21c16b6787c6 5 weeks ago 4.19 MB
|
busybox glibc 21c16b6787c6 5 weeks ago 4.19 MB
|
||||||
```
|
```
|
||||||
|
|
||||||
Filtering with `reference` would give:
|
Filtering with `reference` would give:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ docker images --filter=reference='busy*:*libc'
|
$ docker images --filter=reference='busy*:*libc'
|
||||||
REPOSITORY TAG IMAGE ID CREATED SIZE
|
|
||||||
busybox uclibc e02e811dd08f 5 weeks ago 1.09 MB
|
REPOSITORY TAG IMAGE ID CREATED SIZE
|
||||||
busybox glibc 21c16b6787c6 5 weeks ago 4.19 MB
|
busybox uclibc e02e811dd08f 5 weeks ago 1.09 MB
|
||||||
|
busybox glibc 21c16b6787c6 5 weeks ago 4.19 MB
|
||||||
```
|
```
|
||||||
|
|
||||||
### Format the output
|
### Format the output
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue