4.3. 检查本地镜像
将镜像拉取到本地系统并运行后,您可以使用 podman inspect
命令来调查镜像。例如,使用它来了解镜像是做什么的,并检查镜像内有什么软件。podman inspect
命令显示有关按名称或 ID 标识的容器和镜像的信息。
先决条件
-
container-tools
元数据包已安装。 - 本地系统上提供了拉取的镜像。
流程
检查
registry.redhat.io/ubi9/ubi
镜像:$ podman inspect registry.redhat.io/ubi9/ubi … "Cmd": [ "/bin/bash" ], "Labels": { "architecture": "x86_64", "build-date": "2020-12-10T01:59:40.343735", "com.redhat.build-host": "cpt-1002.osbs.prod.upshift.rdu2.redhat.com", "com.redhat.component": "ubi9-container", "com.redhat.license_terms": "https://www.redhat.com/..., "description": "The Universal Base Image is ... } ...
"Cmd"
键指定要在容器内运行的默认命令。您可以通过指定一个命令作为podman run
命令的参数来覆盖此命令。在使用podman run
启动它时,如果没有其它参数,则此 ubi9/ubi 容器将执行 bash shell。如果设置了"Entrypoint"
键,则使用其值而不是"Cmd"
的值,"Cmd"
的值被用作 Entrypoint 命令的参数。
其他资源
-
您系统上的
podman-inspect
手册页