1podman-umount (1"") podman-umount (1"")
2
3
4
6 podman-umount - Unmount the specified working containers' root file
7 system.
8
9
11 podman umount container ...
12
13
15 Unmounts the specified containers' root file system, if no other
16 processes are using it.
17
18
19 Container storage increments a mount counter each time a container is
20 mounted. When a container is unmounted, the mount counter is
21 decremented and the container's root filesystem is physically unmounted
22 only when the mount counter reaches zero indicating no other processes
23 are using the mount. An unmount can be forced with the --force flag.
24
25
27 --all, -a
28
29
30 All of the currently mounted containers will be unmounted.
31
32
33 --force, -f
34
35
36 Force the unmounting of specified containers' root file system, even if
37 other processes have mounted it.
38
39
40 Note: This could cause other processes that are using the file system
41 to fail, as the mount point could be removed without their knowledge.
42
43
44 --latest, -l
45
46
47 Instead of providing the container name or ID, use the last created
48 container. If you use methods other than Podman to run containers such
49 as CRI-O, the last started container could be from either of those
50 methods.
51
52
53 The latest option is not supported on the remote client.
54
55
57 podman umount containerID
58
59
60 podman umount containerID1 containerID2 containerID3
61
62
63 podman umount --all
64
65
67 podman(1), podman-mount(1)
68
69
70
71 podman-umount (1"")