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 an 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 are 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: Other processes using the file system can fail if the mount point
39 is removed without their knowledge.
40
41
43 Unmount image with a given ID
44
45 podman image unmount imageID
46
47
48
49 Unmount multiple images with given IDs
50
51 podman image unmount imageID1 imageID2 imageID3
52
53
54
55 Unmount all images
56
57 podman image unmount --all
58
59
60
62 podman(1), podman-image-mount(1), podman-mount(1)
63
64
65
66 podman-image-unmount(1)