diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-10-21 11:30:44 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-21 11:30:44 -0400 |
commit | 9060af971911b6b4c21b2b24d011835954058d30 (patch) | |
tree | 3523ff16d7856268cd382455e6e9a621aee24d93 /docs | |
parent | f96dbd0896eac8730142cf694485543275764195 (diff) | |
parent | 3f265e91f4f57758407cc219804678df6250ebc6 (diff) | |
download | podman-9060af971911b6b4c21b2b24d011835954058d30.tar.gz podman-9060af971911b6b4c21b2b24d011835954058d30.tar.bz2 podman-9060af971911b6b4c21b2b24d011835954058d30.zip |
Merge pull request #8093 from rhatdan/wait
Fix handling and documentation of podman wait --interval
Diffstat (limited to 'docs')
-rw-r--r-- | docs/source/markdown/podman-wait.1.md | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/docs/source/markdown/podman-wait.1.md b/docs/source/markdown/podman-wait.1.md index 1d85e9af0..f0ccb1f9e 100644 --- a/docs/source/markdown/podman-wait.1.md +++ b/docs/source/markdown/podman-wait.1.md @@ -23,8 +23,8 @@ Condition to wait on (default "stopped") Print usage statement -**--interval**, **-i**=*microseconds* - Microseconds to wait before polling for completion +**--interval**, **-i**=*duration* + Time interval to wait before polling for completion. A duration string is a sequence of decimal numbers, each with optional fraction and a unit suffix, such as "300ms", "-1.5h" or "2h45m". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". Time unit defaults to "ms". **--latest**, **-l** @@ -42,6 +42,9 @@ $ podman wait mywebserver $ podman wait --latest 0 +$ podman wait --interval 2s +0 + $ podman wait 860a4b23 1 |