List all containers including stopped podman
Show all containers with name, status and image
podman ps -a --format '{{.Names}}\t{{.Status}}\t{{.Image}}'
more podman
all 16 commands →
Remove all stopped containers
podman container prune -f
Login to registry
podman login registry.example.com -u myuser
Container as systemd unit
podman generate systemd --new --files --name <name>
Export pod to Kubernetes YAML
podman generate kube <pod> > pod.yaml
Run Kubernetes YAML locally
podman play kube pod.yaml --replace