summaryrefslogtreecommitdiff
path: root/docs/source/markdown
diff options
context:
space:
mode:
authorPatrycja Guzik <patrycja.k.guzik@gmail.com>2022-03-28 21:34:50 +0200
committerPatrycja Guzik <patrycja.k.guzik@gmail.com>2022-03-28 21:56:13 +0200
commita8e6c639e29c94d458f3d8982a06ed45b30620fa (patch)
tree7d0cc5a7e121d370460babfe462ed5e7a5a7c0ab /docs/source/markdown
parent9cfa9695a0e0e9e5d358f789c4d450d1388589b3 (diff)
downloadpodman-a8e6c639e29c94d458f3d8982a06ed45b30620fa.tar.gz
podman-a8e6c639e29c94d458f3d8982a06ed45b30620fa.tar.bz2
podman-a8e6c639e29c94d458f3d8982a06ed45b30620fa.zip
Unify examples section across several man pages
This commit adjusts example sections across several man pages to the format seen in other pages. Signed-off-by: Patrycja Guzik <patrycja.k.guzik@gmail.com>
Diffstat (limited to 'docs/source/markdown')
-rw-r--r--docs/source/markdown/podman-image-unmount.1.md10
-rw-r--r--docs/source/markdown/podman-network-prune.1.md5
-rw-r--r--docs/source/markdown/podman-pod-pause.1.md6
-rw-r--r--docs/source/markdown/podman-unmount.1.md9
-rw-r--r--docs/source/markdown/podman-unpause.1.md1
-rw-r--r--docs/source/markdown/podman-volume-ls.1.md2
-rw-r--r--docs/source/markdown/podman-volume-unmount.1.md7
7 files changed, 35 insertions, 5 deletions
diff --git a/docs/source/markdown/podman-image-unmount.1.md b/docs/source/markdown/podman-image-unmount.1.md
index 71ec5488f..f2d75f15f 100644
--- a/docs/source/markdown/podman-image-unmount.1.md
+++ b/docs/source/markdown/podman-image-unmount.1.md
@@ -33,11 +33,19 @@ as the mount point could be removed without their knowledge.
## EXAMPLE
+Unmount image with a given ID
+```
podman image unmount imageID
+```
+Unmount multiple images wit given IDs
+```
podman image unmount imageID1 imageID2 imageID3
+```
+Unmount all images
+```
podman image unmount --all
-
+```
## SEE ALSO
**[podman(1)](podman.1.md)**, **[podman-image-mount(1)](podman-image-mount.1.md)**, **[podman-container-mount(1)](podman-container-mount.1.md)**
diff --git a/docs/source/markdown/podman-network-prune.1.md b/docs/source/markdown/podman-network-prune.1.md
index 2c8cf13db..b0a81646d 100644
--- a/docs/source/markdown/podman-network-prune.1.md
+++ b/docs/source/markdown/podman-network-prune.1.md
@@ -36,11 +36,14 @@ Do not prompt for confirmation
## EXAMPLE
Prune networks
-
```
podman network prune
```
+Prune all networks created before 2h
+```
+podman network prune --filter until=2h
+```
## SEE ALSO
**[podman(1)](podman.1.md)**, **[podman-network(1)](podman-network.1.md)**, **[podman-network-rm(1)](podman-network-rm.1.md)**
diff --git a/docs/source/markdown/podman-pod-pause.1.md b/docs/source/markdown/podman-pod-pause.1.md
index 1f29cb2ed..2d2fac00d 100644
--- a/docs/source/markdown/podman-pod-pause.1.md
+++ b/docs/source/markdown/podman-pod-pause.1.md
@@ -21,9 +21,15 @@ Instead of providing the pod name or ID, pause the last created pod. (This optio
## EXAMPLE
+Pause a pod with a given name
+```
podman pod pause mywebserverpod
+```
+Pause a pod with a given ID
+```
podman pod pause 860a4b23
+```
## SEE ALSO
**[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)**
diff --git a/docs/source/markdown/podman-unmount.1.md b/docs/source/markdown/podman-unmount.1.md
index 692b1e495..3f45e8114 100644
--- a/docs/source/markdown/podman-unmount.1.md
+++ b/docs/source/markdown/podman-unmount.1.md
@@ -47,11 +47,20 @@ started container could be from either of those methods. (This option is not ava
## EXAMPLE
+Unmount container with a given ID
+```
podman container unmount containerID
+```
+Unmount multiple containers with given IDs
+```
podman unmount containerID1 containerID2 containerID3
+```
+Unmount all containers
+```
podman unmount --all
+```
## SEE ALSO
**[podman(1)](podman.1.md)**, **[podman-container-mount(1)](podman-container-mount.1.md)**, **[podman-image-mount(1)](podman-image-mount.1.md)**
diff --git a/docs/source/markdown/podman-unpause.1.md b/docs/source/markdown/podman-unpause.1.md
index 0eb1f1bb8..4f66bf393 100644
--- a/docs/source/markdown/podman-unpause.1.md
+++ b/docs/source/markdown/podman-unpause.1.md
@@ -25,7 +25,6 @@ podman unpause mywebserver
```
Unpause a container by a partial container ID.
-
```
podman unpause 860a4b23
```
diff --git a/docs/source/markdown/podman-volume-ls.1.md b/docs/source/markdown/podman-volume-ls.1.md
index 4f5ce6888..4a3489425 100644
--- a/docs/source/markdown/podman-volume-ls.1.md
+++ b/docs/source/markdown/podman-volume-ls.1.md
@@ -26,7 +26,7 @@ Volumes can be filtered by the following attributes:
| name | [Name] Volume name (accepts regex) |
| opt | Matches a storage driver options |
| scope | Filters volume by scope |
-| until | Only remove volumes created before given timestamp |
+| until | Only remove volumes created before given timestamp |
#### **--format**=*format*
diff --git a/docs/source/markdown/podman-volume-unmount.1.md b/docs/source/markdown/podman-volume-unmount.1.md
index e2fcd425f..c489af6c9 100644
--- a/docs/source/markdown/podman-volume-unmount.1.md
+++ b/docs/source/markdown/podman-volume-unmount.1.md
@@ -19,9 +19,14 @@ counter reaches zero indicating no other processes are using the mount.
## EXAMPLE
+Unmount volume with a given ID
+```
podman volume unmount volumeID
+```
+Unmount multiple volumes with given IDs
+```
podman volume unmount volumeID1 volumeID2 volumeID3
-
+```
## SEE ALSO
**[podman(1)](podman.1.md)**, **[podman-volume(1)](podman-volume.1.md)**, **[podman-volume-mount(1)](podman-volume-mount.1.md)**