github.com/hanks177/podman/v4@v4.1.3-0.20220613032544-16d90015bc83/docs/source/markdown/podman-pod-pause.1.md (about) 1 % podman-pod-pause(1) 2 3 ## NAME 4 podman\-pod\-pause - Pause one or more pods 5 6 ## SYNOPSIS 7 **podman pod pause** [*options*] *pod* ... 8 9 ## DESCRIPTION 10 Pauses all the running processes in the containers of one or more pods. You may use pod IDs or names as input. 11 12 ## OPTIONS 13 14 #### **--all**, **-a** 15 16 Pause all pods. 17 18 #### **--latest**, **-l** 19 20 Instead of providing the pod name or ID, pause the last created pod. (This option is not available with the remote Podman client, including Mac and Windows (excluding WSL2) machines) 21 22 ## EXAMPLE 23 24 Pause a pod with a given name 25 ``` 26 podman pod pause mywebserverpod 27 ``` 28 29 Pause a pod with a given ID 30 ``` 31 podman pod pause 860a4b23 32 ``` 33 34 ## SEE ALSO 35 **[podman(1)](podman.1.md)**, **[podman-pod(1)](podman-pod.1.md)**, **[podman-pod-unpause(1)](podman-pod-unpause.1.md)**, **[podman-pause(1)](podman-pause.1.md)** 36 37 ## HISTORY 38 July 2018, Originally compiled by Peter Hunt <pehunt@redhat.com>