Skip to content

Commit

Permalink
How to delete docker image #378
Browse files Browse the repository at this point in the history
  • Loading branch information
nonunicorn committed Dec 15, 2021
1 parent aae2299 commit b4a1d57
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions docker/how-to-delete-docker-image.md
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

0 comments on commit b4a1d57

Please sign in to comment.