diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-02-13 11:42:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-13 11:42:47 +0100 |
commit | 2814995a9281b3b8e67d7c48df28de0de742b995 (patch) | |
tree | 619e916a4e18ac1f802596700c6a5c0418ebe184 /docs | |
parent | a9969c23a343e675d9a628cd5d9456523aaea5b7 (diff) | |
parent | 3afd1b5a7c40e2a55ffd93b9a987385daa3047c0 (diff) | |
download | podman-2814995a9281b3b8e67d7c48df28de0de742b995.tar.gz podman-2814995a9281b3b8e67d7c48df28de0de742b995.tar.bz2 podman-2814995a9281b3b8e67d7c48df28de0de742b995.zip |
Merge pull request #5115 from QiWang19/images-format
images --format compatible with docker
Diffstat (limited to 'docs')
-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** |