diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-02-20 17:41:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-20 17:41:34 +0100 |
commit | fb56c585a2c9d86432220720543416fb168024d4 (patch) | |
tree | 1d2fce1ef71ec4208abf8463fb56d1dc33ad075d /docs/source/markdown/podman-images.1.md | |
parent | 3e5699224bf4bbaa7f61681831a8bf36e3d7aec4 (diff) | |
parent | 29930fae702ee5aea62353a14dce26d5e93a27db (diff) | |
download | podman-fb56c585a2c9d86432220720543416fb168024d4.tar.gz podman-fb56c585a2c9d86432220720543416fb168024d4.tar.bz2 podman-fb56c585a2c9d86432220720543416fb168024d4.zip |
Merge pull request #5272 from edsantiago/filter_since
podman images: add --filter=since=XX
Diffstat (limited to 'docs/source/markdown/podman-images.1.md')
-rw-r--r-- | docs/source/markdown/podman-images.1.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/source/markdown/podman-images.1.md b/docs/source/markdown/podman-images.1.md index d22fb940f..09778e3c2 100644 --- a/docs/source/markdown/podman-images.1.md +++ b/docs/source/markdown/podman-images.1.md @@ -29,11 +29,11 @@ Filter output based on conditions provided Filters: - **after==TIMESTRING** - Filter on images created after the given time.Time. + **since=IMAGE** + Filter on images created after the given IMAGE (name or tag). - **before==TIMESTRING** - Filter on images created before the given time.Time. + **before=IMAGE** + Filter on images created before the given IMAGE (name or tag). **dangling=true|false** Show dangling images. Dangling images are a file system layer that was used in a previous build of an image and is no longer referenced by any active images. They are denoted with the <none> tag, consume disk space and serve no active purpose. |