diff options
author | Qi Wang <qiwan@redhat.com> | 2020-02-06 15:55:14 -0500 |
---|---|---|
committer | Qi Wang <qiwan@redhat.com> | 2020-02-10 10:34:40 -0500 |
commit | 3afd1b5a7c40e2a55ffd93b9a987385daa3047c0 (patch) | |
tree | b03e7c67fc12f4fb3690ecc855552c6af00f9e6a /docs/source/markdown | |
parent | e57253d06841d7a128ef760f8c47acf4b59157df (diff) | |
download | podman-3afd1b5a7c40e2a55ffd93b9a987385daa3047c0.tar.gz podman-3afd1b5a7c40e2a55ffd93b9a987385daa3047c0.tar.bz2 podman-3afd1b5a7c40e2a55ffd93b9a987385daa3047c0.zip |
images --format compatible with docker
This patch lets valid values of --format be compatible with docker. Replace CreatedTime with CreatedAt, Created with CreatedSince.
Keep CreatedTime and Created are valid as hidden options.
Signed-off-by: Qi Wang <qiwan@redhat.com>
Diffstat (limited to 'docs/source/markdown')
-rw-r--r-- | docs/source/markdown/podman-images.1.md | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/source/markdown/podman-images.1.md b/docs/source/markdown/podman-images.1.md index 21fca1dbd..d22fb940f 100644 --- a/docs/source/markdown/podman-images.1.md +++ b/docs/source/markdown/podman-images.1.md @@ -51,6 +51,18 @@ Filter output based on conditions provided Change the default output format. This can be of a supported type like 'json' or a Go template. +Valid placeholders for the Go template are listed below: + +| **Placeholder** | **Description** | +| --------------- | ----------------------------------------------------------------------------- | +| .ID | Image ID | +| .Repository | Image repository | +| .Tag | Image tag | +| .Digest | Image digest | +| .CreatedSince | Elapsed time since the image was created | +| .CreatedAt | Time when the image was created | +| .Size | Size of layer on disk | +| .History | History of the image layer | **--history** |