4장. Working with container images
The Podman tool is designed to work with container images. You can use this tool to pull the image, inspect, tag, save, load, redistribute, and define the image signature.
4.1. Pulling images from registries 링크 복사링크가 클립보드에 복사되었습니다!
Use the podman pull command to get the image to your local system.
Prerequisites
-
The
container-toolsmeta-package is installed.
Procedure
Log in to the registry.redhat.io registry:
$ podman login registry.redhat.io Username: <username> Password: <password> Login Succeeded!Pull the registry.redhat.io/ubi10/ubi container image:
$ podman pull registry.redhat.io/ubi10/ubi
Verification
List all images pulled to your local system:
$ podman images REPOSITORY TAG IMAGE ID CREATED SIZE registry.redhat.io/ubi10/ubi latest 3269c37eae33 7 weeks ago 208 MBFor more information, see the
podman-pull(1)man page on your system.