NAME 名称

podman-manifest-inspect - Display a manifest list or image index
podman-manifest-inspect - 显示清单列表或镜像索引

SYNOPSIS 概要

podman manifest inspect [options] listnameorindexname
podman manifest inspect [选项] listnameorindexname

DESCRIPTION 描述

Displays the manifest list or image index stored using the specified image name.
显示使用指定镜像名称存储的清单列表或镜像索引。

RETURN VALUE 返回值 ¶

A formatted JSON representation of the manifest list or image index.
一个格式化的 JSON 表示清单列表或镜像索引。

OPTIONS 选项

--authfile=path

Path of the authentication file. Default is ${XDG_RUNTIME_DIR}/containers/auth.json on Linux, and $HOME/.config/containers/auth.json on Windows/macOS. The file is created by podman login. If the authorization state is not found there, $HOME/.docker/config.json is checked, which is set using docker login.
认证文件的路径。在 Linux 上默认为 ${XDG_RUNTIME_DIR}/containers/auth.json ,在 Windows/macOS 上默认为 $HOME/.config/containers/auth.json 。该文件由 podman login 创建。如果授权状态未在那里找到,则会检查 $HOME/.docker/config.json ,该值是使用 docker login 设置的。

Note: There is also the option to override the default path of the authentication file by setting the REGISTRY_AUTH_FILE environment variable. This can be done with export REGISTRY_AUTH_FILE=path.
注意:还有一种选择,可以通过设置 REGISTRY_AUTH_FILE 环境变量来覆盖认证文件的默认路径。可以通过 export REGISTRY_AUTH_FILE=path 来实现。

--tls-verify

Require HTTPS and verify certificates when contacting registries (default: true). If explicitly set to true, TLS verification is used. If set to false, TLS verification is not used. If not specified, TLS verification is used unless the target registry is listed as an insecure registry in containers-registries.conf(5)
在联系注册表时需要 HTTPS 并验证证书(默认值为 true)。如果显式设置为 true,则使用 TLS 验证。如果设置为 false,则不使用 TLS 验证。如果未指定,则除非目标注册表在 containers-registries.conf(5) 中被列为不安全注册表,否则将使用 TLS 验证。

EXAMPLES 示例

Inspect the manifest of mylist:v1.11.
检查 mylist:v1.11 的清单。

podman manifest inspect mylist:v1.11

SEE ALSO 参见 ¶

podman(1), podman-manifest(1)