diff --git a/docs/source/markdown/podman-image-unmount.1.md b/docs/source/markdown/podman-image-unmount.1.md index fe20c509b3..30640a7721 100644 --- a/docs/source/markdown/podman-image-unmount.1.md +++ b/docs/source/markdown/podman-image-unmount.1.md @@ -46,5 +46,11 @@ Unmount all images: ``` podman image unmount --all ``` + +Force unmount image with a given ID: +``` +podman image unmount --force imageID +``` + ## SEE ALSO **[podman(1)](podman.1.md)**, **[podman-image-mount(1)](podman-image-mount.1.md)**, **[podman-mount(1)](podman-mount.1.md)** diff --git a/docs/source/markdown/podman-machine-reset.1.md b/docs/source/markdown/podman-machine-reset.1.md index 7bb92d7896..63ed42953b 100644 --- a/docs/source/markdown/podman-machine-reset.1.md +++ b/docs/source/markdown/podman-machine-reset.1.md @@ -40,6 +40,12 @@ Are you sure you want to continue? [y/N] y $ ``` +Force reset without confirmation. +``` +$ podman machine reset --force +$ +``` + ## SEE ALSO **[podman(1)](podman.1.md)**, **[podman-machine(1)](podman-machine.1.md)** diff --git a/docs/source/markdown/podman-pod-prune.1.md b/docs/source/markdown/podman-pod-prune.1.md index 4361467c40..1ef005166a 100644 --- a/docs/source/markdown/podman-pod-prune.1.md +++ b/docs/source/markdown/podman-pod-prune.1.md @@ -19,6 +19,8 @@ Force removal of all running pods and their containers. The default is false. Remove all stopped pods and their containers from local storage. ``` $ sudo podman pod prune +WARNING! This will remove all stopped/exited pods.. +Are you sure you want to continue? [y/N] y 22b8813332948064b6566370088c5e0230eeaf15a58b1c5646859fd9fc364fe7 2afb26869fe5beab979c234afb75c7506063cd4655b1a73557c9d583ff1aebe9 49161ad2a722cf18722f0e17199a9e840703a17d1158cdeda502b6d54080f674 @@ -26,6 +28,15 @@ $ sudo podman pod prune 6bb06573787efb8b0675bc88ebf8361f1a56d3ac7922d1a6436d8f59ffd955f1 ``` +Force removal of all running pods and their containers. +``` +$ sudo podman pod prune --force +22b8813332948064b6566370088c5e0230eeaf15a58b1c5646859fd9fc364fe7 +2afb26869fe5beab979c234afb75c7506063cd4655b1a73557c9d583ff1aebe9 +49161ad2a722cf18722f0e17199a9e840703a17d1158cdeda502b6d54080f674 +5ca429f37fb83a9f54eea89e3a9102b7780a6e6ae5f132db0672da551d862c4a +``` + ## SEE ALSO **[podman(1)](podman.1.md)**, **[podman-pod(1)](podman-pod.1.md)** diff --git a/docs/source/markdown/podman-system-prune.1.md b/docs/source/markdown/podman-system-prune.1.md index 8d39dfcd8e..c1a1f95abe 100644 --- a/docs/source/markdown/podman-system-prune.1.md +++ b/docs/source/markdown/podman-system-prune.1.md @@ -120,6 +120,12 @@ Deleted Images Total reclaimed space: 1.4GB ``` +With `--force` flag +``` +$ podman system prune --force +Total reclaimed space: 0B +``` + ## SEE ALSO **[podman(1)](podman.1.md)**, **[podman-system(1)](podman-system.1.md)** diff --git a/docs/source/markdown/podman-system-reset.1.md b/docs/source/markdown/podman-system-reset.1.md index bbc80fe5c7..537a15d67c 100644 --- a/docs/source/markdown/podman-system-reset.1.md +++ b/docs/source/markdown/podman-system-reset.1.md @@ -48,6 +48,11 @@ WARNING! This will remove: Are you sure you want to continue? [y/N] y ``` +Force reset all storage back to a clean initialized state. +``` +$ podman system reset --force +``` + ### Switching rootless user from VFS driver to overlay with fuse-overlayfs If the user ran rootless containers without having the `fuse-overlayfs` program diff --git a/docs/source/markdown/podman-unmount.1.md.in b/docs/source/markdown/podman-unmount.1.md.in index 8b8653c7f8..a7415cea14 100644 --- a/docs/source/markdown/podman-unmount.1.md.in +++ b/docs/source/markdown/podman-unmount.1.md.in @@ -57,5 +57,10 @@ Unmount all containers: podman unmount --all ``` +Force umount container with given ID: +``` +podman umount --force containerID +``` + ## SEE ALSO **[podman(1)](podman.1.md)**, **[podman-mount(1)](podman-mount.1.md)**, **[podman-image-mount(1)](podman-image-mount.1.md)**