Podman
https://podman.io/
Podman is a daemonless, open source, Linux native tool designed to make it easy to find, run, build, share and deploy applications using Open Containers Initiative (OCI) Containers and Container Images.
Podman provides a command line interface (CLI) familiar to anyone who has used the Docker Container Engine. Most users can simply alias Docker to Podman (alias docker=podman) without any problems.
Similar to other common Container Engines (Docker, CRI-O, containerd), Podman relies on an OCI compliant Container Runtime (runc, crun, runv, etc) to interface with the operating system and create the running containers. This makes the running containers created by Podman nearly indistinguishable from those created by any other common container engine.
https://docs.podman.io/en/latest/index.html
DockerとPodmanの比較 Container Runtime Meetup #3 | by Akihiro Suda | nttlabs | Medium
コミュニティの中心はRedHat
RHEL、CentOS、Fedora などの Linuxディストリビューションに標準で付属
Podmanを用いてKubernetesのPodを管理することは、基本的にはできません。
Kubernetesのマニフェストをローカルで実行したい場合は、Dockerを使う場合でもPodmanを使う場合でも、kind (Kubernetes-in-Docker)を使うほうが便利です。kindを使うと、DockerやPodmanのコンテナをノードとして仮想的なKubernetesクラスタを構築できます。
table:比較
Podman Docker
アーキテクチャ デーモン意識する必要なし あり
リリースサイクル 新機能が使えるようになるまで早い 遅い
API 3.0からDockerと高い互換
k8sマニフェスト 基本的なマニフェストにのみ対応。kind使え ←
ネットワーク container network interface libnetwork
イメージビルド Buildah(BuildKitを使うことも可能) BuildKit
セキュリティ Rootlessモードあり ←