在CentOS 8上安装Podman
步骤1.首先,让我们首先确保您的系统是最新的。
sudo dnf clean all
sudo dnf update
步骤2.在CentOS 8上安装Podman。
运行以下命令以在CentOS系统上安装Podman:
sudo dnf install podman
检查Podman的版本:
podman --version
第3步。如何使用Podman。
现在Podman已安装在我们的CentOS系统中,是时候开始使用它了:
# Pull image $ podman pull ubuntu $ podman pull centos # List existing images $ podman images REPOSITORY TAG IMAGE ID CREATED SIZE docker.io/library/ubuntu latest 775349758637 3 weeks ago 66.6 MB docker.io/library/alpine latest 965ea09ff2eb 5 weeks ago 5.82 MB docker.io/library/centos latest 0f3e07c0138f 7 weeks ago 227 MB
要下载您喜欢的图像,只需使用以下语法:
podman pull image
例如,要下载Ubuntu映像,请运行:
podman pull ubuntu
恭喜你!您已成功安装Podman。感谢您使用本教程在CentOS 8系统上安装Podman。如需其他帮助或有用信息,建议您查看Podman官方网站。
原创文章,作者:校长,如若转载,请注明出处:https://www.yundongfang.com/Yun41334.html