linux中docker的安装教程
Docker软件包已经包括在默认的CentOS-Extras软件源里。因此想要安装docker,只需要运行下面的yum命令:
[root@localhost~]#yuminstalldocker
启动Docker服务
安装完成后,使用下面的命令来启动docker服务,并将其设置为开机启动:
[root@localhost~]#servicedockerstart [root@localhost~]#chkconfigdockeron
(LCTT译注:此处采用了旧式的sysv语法,如采用CentOS7中支持的新式systemd语法,如下:
[root@localhost~]#systemctlstartdocker.service [root@localhost~]#systemctlenabledocker.service
)
下载官方的CentOS镜像到本地
[root@localhost~]#dockerpullcentos Pullingrepositorycentos 192178b11d36:Downloadcomplete 70441cac1ed5:Downloadcomplete ae0c2d0bdc10:Downloadcomplete 511136ea3c5a:Downloadcomplete 5b12ef8fd570:Downloadcomplete
确认CentOS镜像已经被获取:
[root@localhost~]#dockerimagescentos REPOSITORYTAGIMAGEIDCREATEDVIRTUALSIZE centoscentos5192178b11d362weeksago466.9MB centoscentos670441cac1ed52weeksago215.8MB centoscentos7ae0c2d0bdc102weeksago224MB centoslatestae0c2d0bdc102weeksago224MB
运行一个Docker容器:
[root@localhost~]#dockerrun-i-tcentos/bin/bash [root@dbf66395436d/]#
我们可以看到,CentOS容器已经被启动,并且我们得到了bash提示符。在docker命令中我们使用了“-i捕获标准输入输出”和“-t分配一个终端或控制台”选项。若要断开与容器的连接,输入exit。
[root@cd05639b3f5c/]#cat/etc/redhat-release CentOSLinuxrelease7.0.1406(Core) [root@cd05639b3f5c/]#exit exit [root@localhost~]#
我们还可以搜索基于Fedora和Ubuntu操作系统的容器。
[root@localhost~]#dockersearchubuntu [root@localhost~]#dockersearchfedora
到此这篇关于linux中docker的安装的文章就介绍到这了,更多相关linuxdocker安装内容请搜索毛票票以前的文章或继续浏览下面的相关文章希望大家以后多多支持毛票票!