在上
步骤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。如需其他帮助或有用信息,建议您查看。
原创文章,作者:校长,如若转载,请注明出处:https://www.yundongfang.com/yun41334.html