-
-
Notifications
You must be signed in to change notification settings - Fork 162
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
aae2299
commit b4a1d57
Showing
1 changed file
with
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# How to delete docker image | ||
|
||
```docker | ||
docker rmi 7f45e9841c87 | ||
``` | ||
|
||
- `rmi` - removes specified image | ||
- `7f45e9841c87` - image ID to remove | ||
|
||
group: delete | ||
|
||
## Example: | ||
```docker | ||
docker rmi 7f45e9841c87 | ||
``` | ||
``` | ||
Deleted: sha256:7f45e9841c87946aed926c01c440e4c34cc33bc2348beffd851cfa9b85f77ea6 | ||
``` | ||
|
||
## Additional keywords | ||
- remove |