导读:
参考:Exploring Podman: A More Secure Docker Alternative
作者:Marin Bezhanov
网址:https://betterstack.com/community/guides/scaling-docker/podman-vs-docker/
该随笔为文章部分摘要和学习笔记
架构区别
Docker属于CS架构(client-server),Podman利用了无守护架构(daemonless architecture)
graph LR userA((user)) --> DC(DockerClient) DC --> DD(DockerDaemon) DD --> CP(ContainerProcess) userB((user)) --> P(Podman) P --> PC(ContainerProcess) 标签:架构,--,DD,ContainerProcess,Podman,Docker,替代 From: https://www.cnblogs.com/ling-2945/p/18091545