-
Notifications
You must be signed in to change notification settings - Fork 221
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
40cb8ca
commit 7acc993
Showing
5 changed files
with
310 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
% toolbox-rm(1) | ||
|
||
## NAME | ||
toolbox\-rm - Remove one or more toolbox containers | ||
|
||
## SYNOPSIS | ||
**toolbox rm** [*--all*] [*--force*] [*CONTAINER*...] | ||
|
||
## DESCRIPTION | ||
|
||
Removes one or more toolbox containers from the host. The container should | ||
have been created using the `toolbox create` command. | ||
|
||
A toolbox container is an OCI container. Therefore, `toolbox rm` can be used | ||
interchangeably with `podman rm`. | ||
|
||
## OPTIONS ## | ||
|
||
The following options are understood: | ||
|
||
**--all, -a** | ||
|
||
Remove all toolbox containers. It can be used in conjuction with `--force` as | ||
well. | ||
|
||
**--force, -f** | ||
|
||
Force the removal of running and paused toolbox containers. | ||
|
||
## EXAMPLES | ||
|
||
### Remove a toolbox container named `fedora-toolbox-gegl:30` | ||
|
||
``` | ||
$ toolbox rm fedora-toolbox-gegl:30 | ||
``` | ||
|
||
### Remove all toolbox containers, but not those that are running or paused | ||
|
||
``` | ||
$ toolbox rm --all | ||
``` | ||
|
||
### Remove all toolbox containers, including ones that are running or paused | ||
|
||
``` | ||
$ toolbox rm --all --force | ||
``` | ||
|
||
## SEE ALSO | ||
|
||
`buildah(1)`, `podman(1)`, `podman-rm(1)` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
% toolbox-rmi(1) | ||
|
||
## NAME | ||
toolbox\-rmi - Remove one or more toolbox images | ||
|
||
## SYNOPSIS | ||
**toolbox rmi** [*--all*] [*--force*] [*IMAGE*...] | ||
|
||
## 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** | ||
|
||
Remove all toolbox images. It can be used in conjuction with `--force` as well. | ||
|
||
**--force, -f** | ||
|
||
Force the removal of toolbox images that are used by toolbox containers. The | ||
dependent containers will be removed as well. | ||
|
||
## EXAMPLES | ||
|
||
### Remove a toolbox image named `localhost/fedora-toolbox-gegl:30` | ||
|
||
``` | ||
$ toolbox rmi localhost/fedora-toolbox-gegl:30 | ||
``` | ||
|
||
### 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 | ||
|
||
`buildah(1)`, `podman(1)`, `podman-rm(1)` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters