Run Kubernetes YAML locally podman
Spin up pods/services from a K8s manifest with no cluster; --replace re-applies cleanly
podman play kube pod.yaml --replace
more podman
all 16 commands →
Rootless port/uid mapping debug
podman unshare cat /proc/self/uid_map; cat /etc/subuid
Auto-update from registry
podman auto-update --dry-run && systemctl --user start podman-auto-update
Migrate storage after upgrade
podman system migrate
Run container rootless
podman run -d --name web -p 8080:80 nginx:alpine
Build image
podman build -t myapp:latest -f Containerfile .