centos7支持docker吗?

centos7支持docker吗


天涯尽头无女友
浏览 912回答 2
2回答

神不在的星期二

在centos7上我们可以通过yum来安装docker1.确保你拥有管理员权限,需要可以使用sudo或者root的命令的权限。2.需要将你的yum的包升级到最新的状态。sudoyumupdate3.为你的yum添加一个repo文件。在centos7下面您可以直接运行下面的代码。cat>/etc/yum.repos.d/docker.repo<<-EOF[dockerrepo]name=DockerRepositorybaseurl=pleteStatus:Downloadednewerimageforhello-world:latestHellofromDocker.Thismessageshowsthatyourinstallationappearstobeworkingcorrectly.Togeneratethismessage,Dockertookthefollowingsteps:1.TheDockerclientcontactedtheDockerdaemon.2.TheDockerdaemonpulledthe"hello-world"imagefromtheDockerHub.3.TheDockerdaemoncreatedanewcontainerfromthatimagewhichrunstheexecutablethatproducestheoutputyouarecurrentlyreading.4.TheDockerdaemonstreamedthatoutputtotheDockerclient,whichsentittoyourterminal.Totrysomethingmoreambitious,youcanrunanUbuntucontainerwith:$dockerrun-itubuntubashShareimages,automateworkflows,andmorewithafreeDockerHubaccount:/userguide/如果看到这样的命令就说明hello-world的镜像安装好了。这个时候我们再键入servicedockerstart就会提示Startingdocker(viasystemctl):[OK]说明我们的docker已经正常的在centos上运行了。

慕仙森

你好,方法如下:1、Docker 软件包已经包括在默认的 CentOS-Extras 软件源里,需要配置好yum源,2、安装docker命令如下: yum -y install docker,3、安装完成后,使用下面的命令来启动 docker 服务4、下载官方的 CentOS 镜像到本地 ,docker pull centos5、搜索可用的docker镜像,下载成功6、在docker容器中安装新的程序,命令docker run -ubuntuapt-get install -y ping7、在容器中用命令ping,发现测试可以使用
打开App,查看更多内容
随时随地看视频慕课网APP