Podman: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
yum -y install podman
==Manage Images==
  podman pull fedora:latest
  podman pull fedora:latest
  podman run -it fedora bash
  podman run -it fedora bash
Line 18: Line 21:
* [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]
* [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://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://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 05:15, 28 August 2021

yum -y 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