1toolbox-rm(1)() toolbox-rm(1)()
2
3
4
6 toolbox-rm - Remove one or more toolbox containers
7
8
10 toolbox rm [--all | -a] [--force | -f] [CONTAINER...]
11
12
14 Removes one or more toolbox containers from the host. The container
15 should have been created using the toolbox create command.
16
17
18 A toolbox container is an OCI container. Therefore, toolbox rm can be
19 used interchangeably with podman rm.
20
21
23 The following options are understood:
24
25
26 --all, -a
27
28
29 Remove all toolbox containers. It can be used in conjuction with
30 --force as well.
31
32
33 --force, -f
34
35
36 Force the removal of running and paused toolbox containers.
37
38
40 Remove a toolbox container named fedora-toolbox-gegl:36
41 $ toolbox rm fedora-toolbox-gegl:36
42
43
44
45 Remove all toolbox containers, but not those that are running or paused
46 $ toolbox rm --all
47
48
49
50 Remove all toolbox containers, including ones that are running or paused
51 $ toolbox rm --all --force
52
53
54
56 toolbox(1), podman(1), podman-rm(1)
57
58
59
60 toolbox-rm(1)()