diff options
author | haircommander <pehunt@redhat.com> | 2018-07-19 14:58:48 -0400 |
---|---|---|
committer | haircommander <pehunt@redhat.com> | 2018-07-20 08:44:44 -0400 |
commit | 17f257140eaecbe39f679d27df85573eb15a7d51 (patch) | |
tree | 0cffee6b81f006b89ca01c08148e17711acf532b /docs/podman-pod-stop.1.md | |
parent | ba1871dac033783ab0329c9b3c9113a34a90992f (diff) | |
download | podman-17f257140eaecbe39f679d27df85573eb15a7d51.tar.gz podman-17f257140eaecbe39f679d27df85573eb15a7d51.tar.bz2 podman-17f257140eaecbe39f679d27df85573eb15a7d51.zip |
Added pod start and stop
As well as added tests, man pages, and completions.
Also reformatted and refactored a couple of other small things in the other pod commands.
Signed-off-by: haircommander <pehunt@redhat.com>
Diffstat (limited to 'docs/podman-pod-stop.1.md')
-rw-r--r-- | docs/podman-pod-stop.1.md | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/docs/podman-pod-stop.1.md b/docs/podman-pod-stop.1.md new file mode 100644 index 000000000..05e88041f --- /dev/null +++ b/docs/podman-pod-stop.1.md @@ -0,0 +1,47 @@ +% podman-pod-stop "1" + +## NAME +podman\-pod\-stop - Stop one or more pods + +## SYNOPSIS +**podman pod stop** [*options*] *pod* ... + +## DESCRIPTION +Stop containers in one or more pods. You may use pod IDs or names as input. + +## OPTIONS + +**--all, -a** + +Stops all pods + +**--latest, -l** + +Instead of providing the pod name or ID, stop the last created pod. + +## EXAMPLE + +podman pod stop mywebserverpod +cc8f0bea67b1a1a11aec1ecd38102a1be4b145577f21fc843c7c83b77fc28907 + +podman pod stop 490eb 3557fb +490eb241aaf704d4dd2629904410fe4aa31965d9310a735f8755267f4ded1de5 +3557fbea6ad61569de0506fe037479bd9896603c31d3069a6677f23833916fab + +3557fbea6ad61569de0506fe037479bd9896603c31d3069a6677f23833916fab + +podman pod stop --latest +3557fbea6ad61569de0506fe037479bd9896603c31d3069a6677f23833916fab + +podman pod stop --all +19456b4cd557eaf9629825113a552681a6013f8c8cad258e36ab825ef536e818 +3557fbea6ad61569de0506fe037479bd9896603c31d3069a6677f23833916fab +490eb241aaf704d4dd2629904410fe4aa31965d9310a735f8755267f4ded1de5 +70c358daecf71ef9be8f62404f926080ca0133277ef7ce4f6aa2d5af6bb2d3e9 +cc8f0bea67b1a1a11aec1ecd38102a1be4b145577f21fc843c7c83b77fc28907 + +## SEE ALSO +podman-pod(1), podman-pod-start(1), podman-stop(1) + +## HISTORY +July 2018, Originally compiled by Peter Hunt <pehunt@redhat.com> |