mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-17 06:00:35 +00:00
Update cheatsheets
This commit is contained in:
26
podman-image
Normal file
26
podman-image
Normal file
@@ -0,0 +1,26 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# podman image
|
||||
|
||||
> Manage Docker images.
|
||||
> See also: `podman build`, `podman import`, and `podman pull`.
|
||||
> More information: <https://docs.podman.io/en/latest/markdown/podman-image.1.html>.
|
||||
|
||||
- List local Docker images:
|
||||
|
||||
`podman image ls`
|
||||
|
||||
- Delete unused local Docker images:
|
||||
|
||||
`podman image prune`
|
||||
|
||||
- Delete all unused images (not just those without a tag):
|
||||
|
||||
`podman image prune --all`
|
||||
|
||||
- Show the history of a local Docker image:
|
||||
|
||||
`podman image history {{image}}`
|
||||
Reference in New Issue
Block a user