7
podman
commands
any developer should be aware of
To check the version of podman
podman --version
To search for an image in the registry(docker as well as in RedHat registry)
podman search <image_name>
Pull command copies an image from a registry onto the local machine
Podman pull <image_name>
Starts a process with its file system, networking, and an isolated process tree.
podman run <image_name>
ps command lists all the running containers.
podman ps
Inspect command displays all the configurations like(volume, network, etc.) of a running container.
podman inspect <image_name>
Kill one or more running containers.
podman kill <container_id>
Click to learn more