Podman安装

2018-04-20 20:20:24
共114字 预计阅读1分钟

官网地址 https://podman.io/getting-started http://docs.podman.io/en/latest

Podman和Docker区别 不需要守护进程就可运行 可使用普通用户运行


Podman安装 官网安装文档
官网安装CentOS 8

1
2
3
4
5
dnf -y module disable container-tools
dnf -y install 'dnf-command(copr)'
dnf -y copr enable rhcontainerbot/container-selinux
curl -L -o /etc/yum.repos.d/devel:kubic:libcontainers:stable.repo https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/CentOS_8/devel:kubic:libcontainers:stable.repo
dnf -y install podman

也可以直接执行dnf install podman -y