mirror of
https://github.com/containers/podman.git
synced 2025-07-04 01:48:28 +08:00
Merge pull request #21703 from rhatdan/docs30
[CI:DOCS] Fix up example description of podman-pause.1.md.in
This commit is contained in:
@ -48,28 +48,28 @@ Valid filters are listed below:
|
|||||||
|
|
||||||
## EXAMPLE
|
## EXAMPLE
|
||||||
|
|
||||||
Pause container named 'mywebserver'
|
Pause specified container:
|
||||||
```
|
```
|
||||||
podman pause mywebserver
|
podman pause mywebserver
|
||||||
```
|
```
|
||||||
|
|
||||||
Pause container by partial container ID.
|
Pause container by partial container ID:
|
||||||
```
|
```
|
||||||
podman pause 860a4b23
|
podman pause 860a4b23
|
||||||
```
|
```
|
||||||
|
|
||||||
Pause all **running** containers.
|
Pause all **running** containers:
|
||||||
```
|
```
|
||||||
podman pause --all
|
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
|
||||||
podman pause --cidfile /home/user/cidfile-1 --cidfile ./cidfile-2
|
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
|
podman pause --latest
|
||||||
```
|
```
|
||||||
|
@ -48,28 +48,28 @@ Valid filters are listed below:
|
|||||||
|
|
||||||
## EXAMPLE
|
## EXAMPLE
|
||||||
|
|
||||||
Unpause container called 'mywebserver'
|
Unpause specified container:
|
||||||
```
|
```
|
||||||
podman unpause mywebserver
|
podman unpause mywebserver
|
||||||
```
|
```
|
||||||
|
|
||||||
Unpause container by a partial container ID.
|
Unpause container by a partial container ID:
|
||||||
```
|
```
|
||||||
podman unpause 860a4b23
|
podman unpause 860a4b23
|
||||||
```
|
```
|
||||||
|
|
||||||
Unpause all **paused** containers.
|
Unpause all **paused** containers:
|
||||||
```
|
```
|
||||||
podman unpause --all
|
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
|
||||||
podman unpause --cidfile /home/user/cidfile-1 --cidfile ./cidfile-2
|
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
|
podman unpause --latest
|
||||||
```
|
```
|
||||||
|
Reference in New Issue
Block a user