Title here
Summary here
podman run -it --rm alpine shpodman run -d -p 8080:80 nginxpodman run --name mycontainer -d nginxpodman pspodman stop <container_id>podman start <container_id>podman rm <container_id>podman pull nginxpodman imagespodman rmi nginxpodman push myimage:latest docker.io/myrepo/myimage:latestFROM alpine
CMD ["echo", "Hello, Podman!"]podman build -t myimage .podman run myimagepodman tag myimage:latest myrepo/myimage:v1podman inspect myimagepodman save -o myimage.tar myimage:latestpodman load -i myimage.tarsystemd:podman generate systemd --new --files --name mycontainerpodman logs mycontainerpodman ps -apodman run -d --name webserver -p 8080:80 nginx
podman ps
podman logs webserverecho -e "FROM alpine\nCMD [\"echo\", \"Hello Podman!\"]" > Dockerfile
podman build -t hello-podman .
podman run hello-podmanpodman tag hello-podman docker.io/myrepo/hello-podman:v1
podman push docker.io/myrepo/hello-podman:v1In the next module, we will explore Podman Pods, container networking, persistent storage, and health checks.