What problem does it solve?
Podman provides a comprehensive, rootless container management experience to run, build, and orchestrate containers and pods safely without needing a daemon.
Core Features & Use Cases
- Basic Lifecycle: Run containers, list them, stop and remove, and inspect details.
- Image Management: Pull, list, build from a Containerfile, and remove images.
- Pod & Networking: Create pods, attach containers to pods, and manage networks.
- Maintenance & Utilities: Prune unused resources, check disk usage, and diagnose issues.
- Integrations: Systemd unit file generation, Docker Compose compatibility, and Kubernetes YAML export.
- Quick Start Example: Use a simple command to containerize a tiny app.
Quick Start
Run a quick container in detached mode:
podman run -d --name my-app alpine sleep 1000