Podman: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 27: Line 27:
{|
{|
| valign="top" |
| valign="top" |
* [https://developers.redhat.com/blog/2020/11/19/transitioning-from-docker-to-podman Transitioning from Docker to Podman]
* [https://www.redhat.com/sysadmin/podman-windows-wsl2 Podman on Windows with WSL2]
* [https://www.redhat.com/sysadmin/podman-windows-wsl2 Podman on Windows with WSL2]
* [https://codefresh.io/devops/docker-images-without-docker-practical-guide/ Docker Images Without Docker]
* [https://codefresh.io/devops/docker-images-without-docker-practical-guide/ Docker Images Without Docker]
Line 35: Line 34:
* [https://podman.io/ Podman]
* [https://podman.io/ Podman]
* [https://buildah.io/ Buildah]
* [https://buildah.io/ Buildah]
* [[Vagrant]]
* [[Docker]]
* [[Docker]]
* [[Qemu]]
* [[Qemu]]
Line 40: Line 40:
| valign="top" |
| valign="top" |
* [https://developers.redhat.com/blog/2019/02/21/podman-and-buildah-for-docker-users Podman and Buildah for Docker users]
* [https://developers.redhat.com/blog/2019/02/21/podman-and-buildah-for-docker-users Podman and Buildah for Docker users]
* [https://developers.redhat.com/blog/2020/11/19/transitioning-from-docker-to-podman Transitioning from Docker to Podman]


|}
|}

Revision as of 08:18, 12 June 2022

. /etc/os-release
echo "deb https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/xUbuntu_${VERSION_ID}/ /" | sudo tee /etc/apt/sources.list.d /devel:kubic:libcontainers:stable.list
curl -L "https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/xUbuntu_${VERSION_ID}/Release.key" | sudo apt-key add -
apt update
apt upgrade
apt install podman

Manage Images

podman pull fedora:latest
podman run -it fedora bash
~/.local/share/containers

Docker Removal

systemctl stop docker
yum -y remove docker
podman pull fedora:latest

Knowledge

podman logs –latest
podman inspect –l
podman ps

References