7 Beginner podman commands

podman --version

To check the version of podman

podman search <image_name>

To search for an image in the registry(docker as well as in RedHat registry)

Podman pull <image_name>

Pull command copies an image from a registry onto the local machine

podman run <image_name>

Starts a process with its file system, networking, and an isolated process tree.

podman ps

ps command lists all the running containers.

podman inspect <image_name>

Inspect command displays all the configurations like(volume, network, etc.) of a running container.

podman kill <container_id>

Kill one or more running containers.

podman kill <container_id>

Kill one or more running containers.