Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Install podman Red Hat

yum inatall podman -y


Install podman Ubuntu

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


  • No labels