sudo apt-get -y update
sudo apt-get -y install podman
sudo yum -y install podman
podman run -it ubuntu bash
podman ps
podman ps -a
podman stop CONTAINER_ID
podman rm CONTAINER_ID
podman pull IMAGE_NAME
podman images
podman rmi IMAGE_NAME
Run a rootless container (simply run the command as a non-root user):
podman run -it ubuntu bash
podman volume create my_volume
podman run -v my_volume:/data ubuntu
podman run -v /path/on/host:/path/in/container ubuntu
podman run --network=NETWORK_NAME ubuntu
podman pod create --name my_pod
podman run --pod my_pod ubuntu
podman pod list
podman pod rm POD_NAME
podman build -t my_image .