Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/source/markdown/podman-image-unmount.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)**
6 changes: 6 additions & 0 deletions docs/source/markdown/podman-machine-reset.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)**

Expand Down
11 changes: 11 additions & 0 deletions docs/source/markdown/podman-pod-prune.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,24 @@ 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
5ca429f37fb83a9f54eea89e3a9102b7780a6e6ae5f132db0672da551d862c4a
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)**

Expand Down
6 changes: 6 additions & 0 deletions docs/source/markdown/podman-system-prune.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)**

Expand Down
5 changes: 5 additions & 0 deletions docs/source/markdown/podman-system-reset.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions docs/source/markdown/podman-unmount.1.md.in
Original file line number Diff line number Diff line change
Expand Up @@ -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)**