Merge pull request #21703 from rhatdan/docs30

[CI:DOCS] Fix up example description of podman-pause.1.md.in
This commit is contained in:
openshift-merge-bot[bot]
2024-02-19 09:04:40 +00:00
committed by GitHub
2 changed files with 10 additions and 10 deletions

View File

@ -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
```

View File

@ -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
```