Install podman Red Hat
yum inatall podman -y
Install podman Ubuntu (18.04)
apt-get update -y apt-get upgrade -y apt-get install software-properties-common -y add-apt-repository -y ppa:projectatomic/ppa apt-get install podman -y podman info
Define docker.io registries in the file:
echo -e "[registries.search]\nregistries = ['docker.io']" | sudo tee /etc/containers/registries.conf
You can run an Ubuntu container with:
docker run -it ubuntu bash
List of downloaded images with the following command:
podman images
See the running container with the following command:
podman ps -a
Start and stop the container with the following command:
podman stop --latest podman start --latest
Remove the container, run the following command:
podman rm --latest
https://github.com/containers/libpod/blob/master/docs/tutorials/podman_tutorial.md