Files
tldr/pages.zh/common/podman-images.md

24 lines
523 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# podman images
> 管理 Podman 镜像。
> 更多信息:<https://docs.podman.io/en/latest/markdown/podman-images.1.html>。
- 列出所有 Podman 镜像:
`podman images`
- 列出所有 Podman 镜像,包括中间镜像:
`podman images --all`
- 以安静模式列出输出(仅显示数字 ID
`podman images --quiet`
- 列出未被任何容器使用的所有 Podman 镜像:
`podman images --filter dangling=true`
- 列出名称中包含子字符串的镜像:
`podman images "{{*image|image*}}"`