diff --git a/docs/source/markdown/podman-pause.1.md.in b/docs/source/markdown/podman-pause.1.md.in index 4c5030b6ab..85349ae305 100644 --- a/docs/source/markdown/podman-pause.1.md.in +++ b/docs/source/markdown/podman-pause.1.md.in @@ -48,28 +48,28 @@ Valid filters are listed below: ## EXAMPLE -Pause container named 'mywebserver' +Pause specified container: ``` podman pause mywebserver ``` -Pause container by partial container ID. +Pause container by partial container ID: ``` podman pause 860a4b23 ``` -Pause all **running** containers. +Pause all **running** containers: ``` podman pause --all ``` -Pause container using ID specified in a given files. +Pause container using ID specified in given files: ``` podman pause --cidfile /home/user/cidfile-1 podman pause --cidfile /home/user/cidfile-1 --cidfile ./cidfile-2 ``` -Pause the latest container. (This option is not available with the remote Podman client, including Mac and Windows (excluding WSL2) machines) +Pause the latest container. (This option is not available with the remote Podman client, including Mac and Windows (excluding WSL2) machines): ``` podman pause --latest ``` diff --git a/docs/source/markdown/podman-unpause.1.md.in b/docs/source/markdown/podman-unpause.1.md.in index adee477ec3..49a46ebae4 100644 --- a/docs/source/markdown/podman-unpause.1.md.in +++ b/docs/source/markdown/podman-unpause.1.md.in @@ -48,28 +48,28 @@ Valid filters are listed below: ## EXAMPLE -Unpause container called 'mywebserver' +Unpause specified container: ``` podman unpause mywebserver ``` -Unpause container by a partial container ID. +Unpause container by a partial container ID: ``` podman unpause 860a4b23 ``` -Unpause all **paused** containers. +Unpause all **paused** containers: ``` podman unpause --all ``` -Unpause container using ID specified in a given files. +Unpause container using ID specified in given files: ``` podman unpause --cidfile /home/user/cidfile-1 podman unpause --cidfile /home/user/cidfile-1 --cidfile ./cidfile-2 ``` -Unpause the latest container. (This option is not available with the remote Podman client, including Mac and Windows (excluding WSL2) machines) +Unpause the latest container. (This option is not available with the remote Podman client, including Mac and Windows (excluding WSL2) machines): ``` podman unpause --latest ```