diff options
author | Robert P. J. Day <rpjday@crashcourse.ca> | 2020-01-27 16:31:20 -0500 |
---|---|---|
committer | Robert P. J. Day <rpjday@crashcourse.ca> | 2020-01-28 05:31:52 -0500 |
commit | c38e22de23b7ef031ef9e4c3daa4b8dc6f91de87 (patch) | |
tree | 1871e8ece766e18c73f081f5f2c11454e8378e59 /docs/source/markdown/podman-stop.1.md | |
parent | 094baa5366a3f41df2511ff2d749a773f2eed03f (diff) | |
download | podman-c38e22de23b7ef031ef9e4c3daa4b8dc6f91de87.tar.gz podman-c38e22de23b7ef031ef9e4c3daa4b8dc6f91de87.tar.bz2 podman-c38e22de23b7ef031ef9e4c3daa4b8dc6f91de87.zip |
docs: add missing hyphen for '-t' option, command '$' prompts
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Diffstat (limited to 'docs/source/markdown/podman-stop.1.md')
-rw-r--r-- | docs/source/markdown/podman-stop.1.md | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/docs/source/markdown/podman-stop.1.md b/docs/source/markdown/podman-stop.1.md index 3b5f17057..7dbf18887 100644 --- a/docs/source/markdown/podman-stop.1.md +++ b/docs/source/markdown/podman-stop.1.md @@ -38,27 +38,27 @@ to run containers such as CRI-O, the last started container could be from either The latest option is not supported on the remote client. -**--timeout**, **--time**, **t**=*time* +**--timeout**, **--time**, **-t**=*time* Timeout to wait before forcibly stopping the container -## EXAMPLE +## EXAMPLES -podman stop mywebserver +$ podman stop mywebserver -podman stop 860a4b235279 +$ podman stop 860a4b235279 -podman stop mywebserver 860a4b235279 +$ podman stop mywebserver 860a4b235279 -podman stop --cidfile /home/user/cidfile-1 +$ podman stop --cidfile /home/user/cidfile-1 -podman stop --cidfile /home/user/cidfile-1 --cidfile ./cidfile-2 +$ podman stop --cidfile /home/user/cidfile-1 --cidfile ./cidfile-2 -podman stop --timeout 2 860a4b235279 +$ podman stop --timeout 2 860a4b235279 -podman stop -a +$ podman stop -a -podman stop --latest +$ podman stop --latest ## SEE ALSO podman(1), podman-rm(1) |