1podman-image-unmount(1) General Commands Manual podman-image-unmount(1)
2
3
4
6 podman-image-unmount - Unmount an image's root filesystem
7
8
10 podman image unmount [options] image [...]
11
12
13 podman image umount [options] image [...]
14
15
17 Unmounts the specified images' root file system, if no other processes
18 are using it.
19
20
21 Image storage increments a mount counter each time an image is mounted.
22 When a image is unmounted, the mount counter is decremented, and the
23 image's root filesystem is physically unmounted only when the mount
24 counter reaches zero indicating no other processes are using the mount.
25 An unmount can be forced with the --force flag.
26
27
29 --all, -a
30 All of the currently mounted images will be unmounted.
31
32
33 --force, -f
34 Force the unmounting of specified images' root file system, even if
35 other processes have mounted it.
36
37
38 Note: This could cause other processes that are using the file system
39 to fail, as the mount point could be removed without their knowledge.
40
41
43 Unmount image with a given ID
44
45
46 podman image unmount imageID
47
48
49
50 Unmount multiple images with given IDs
51
52
53 podman image unmount imageID1 imageID2 imageID3
54
55
56
57 Unmount all images
58
59
60 podman image unmount --all
61
62
63
65 podman(1), podman-image-mount(1), podman-container-mount(1)
66
67
68
69 podman-image-unmount(1)