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

523 B
Raw Permalink Blame History

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*}}"