Podman: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
No edit summary
Line 31: Line 31:
* [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]
* [https://podman.io/getting-started/installation Podman Installation]
* [https://medium.com/technopanti/docker-vs-podman-c03359fabf77 Docker vs Podman]
* [https://medium.com/technopanti/docker-vs-podman-c03359fabf77 Docker vs Podman]
* [https://podman.io/getting-started/installation Podman Installation]
* [https://podman.io/ Podman]
* [https://podman.io/ Podman]
* [https://buildah.io/ Buildah]
* [https://buildah.io/ Buildah]

Revision as of 19:55, 2 October 2021

. /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