2019-02-19 15:59:19 +00:00
|
|
|
% toolbox-rmi(1)
|
|
|
|
|
|
|
|
## NAME
|
|
|
|
toolbox\-rmi - Remove one or more toolbox images
|
|
|
|
|
|
|
|
## SYNOPSIS
|
2021-03-04 19:36:22 +00:00
|
|
|
**toolbox rmi** [*--all* | *-a*] [*--force* | *-f*] [*IMAGE*...]
|
2019-02-19 15:59:19 +00:00
|
|
|
|
|
|
|
## DESCRIPTION
|
|
|
|
|
|
|
|
Removes one or more toolbox images from the host. The image should have been
|
|
|
|
created using the `toolbox create` command.
|
|
|
|
|
|
|
|
A toolbox image is an OCI image. Therefore, `toolbox rmi` can be used
|
|
|
|
interchangeably with `podman rmi`.
|
|
|
|
|
|
|
|
## OPTIONS ##
|
|
|
|
|
|
|
|
The following options are understood:
|
|
|
|
|
|
|
|
**--all, -a**
|
|
|
|
|
2022-10-24 11:22:30 +00:00
|
|
|
Remove all toolbox images. It can be used in conjunction with `--force` as well.
|
2019-02-19 15:59:19 +00:00
|
|
|
|
|
|
|
**--force, -f**
|
|
|
|
|
|
|
|
Force the removal of toolbox images that are used by toolbox containers. The
|
|
|
|
dependent containers will be removed as well.
|
|
|
|
|
|
|
|
## EXAMPLES
|
|
|
|
|
2021-12-10 02:02:54 +00:00
|
|
|
### Remove a toolbox image named `localhost/fedora-toolbox-gegl:36`
|
2019-02-19 15:59:19 +00:00
|
|
|
|
|
|
|
```
|
2021-12-10 02:02:54 +00:00
|
|
|
$ toolbox rmi localhost/fedora-toolbox-gegl:36
|
2019-02-19 15:59:19 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
### Remove all toolbox images, but not those that are used by containers
|
|
|
|
|
|
|
|
```
|
|
|
|
$ toolbox rmi --all
|
|
|
|
```
|
|
|
|
|
|
|
|
### Remove all toolbox images and their dependent containers
|
|
|
|
|
|
|
|
```
|
|
|
|
$ toolbox rmi --all --force
|
|
|
|
```
|
|
|
|
|
|
|
|
## SEE ALSO
|
|
|
|
|
2021-03-04 19:36:22 +00:00
|
|
|
`toolbox(1)`, `podman(1)`, `podman-rmi(1)`
|