您好,登錄后才能下訂單哦!
這篇文章主要介紹“在CentOS7上安裝Docker環境實例分析”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“在CentOS7上安裝Docker環境實例分析”文章能幫助大家解決問題。
docker的安裝要求64位系統且內核版本大于3.10。所以如果是centos的話,必須安裝centos7.0或以上版本。
我們這里使用的是centos7.2 mininul。
uname -r
3.10.0-327.28.3.el7.x86_64
安裝docker前執行一下全系統的軟件版本升級:yum -y update
1.配置yum軟件庫
為保證安裝的成功,首先使用yum update更新yum包,表示我的好多yum包都需要更新,1500+的包,如果你像我一樣好久沒有更新過,那就耐心等候吧。
然后在yum軟件庫中新增docker的配置:
# tee /etc/yum.repos.d/docker.repo <<-'eof' [dockerrepo] name=docker repository baseurl=https://yum.dockerproject.org/repo/main/centos/7/ enabled=1 gpgcheck=1 gpgkey=https://yum.dockerproject.org/gpg eof
2.安裝docker
有了yum軟件庫的配置之后,安裝也變得異常的簡單,只需要以下一句即可:
# yum install docker-engine
3.啟動docker
一切就緒之后,使用start命令來啟動docker守護進程:
# service docker start
4.輸出hello-world
程序員貌似跟hello-world有仇,有事兒沒事就打印人家一下,玩docker咱們當前也不例外,先來個hello-world吧,這里的基本原理是利用人家已經寫好的hello-world鏡像,下載到本地,然后把他運行起來~
使用以下命令:
# docker run hello-world
然后控制端會輸出類似于如下的信息,就證明我們的docker環境安裝成功了~
在這里,我第一次失敗了~顯示:
unable to find image 'hello-world:latest' locally docker: error response from daemon: get https://registry-1.docker.io/v2/library/hello-world/manifests/latest: get https://auth.docker.io/token?scope=repository%3alibrary%2fhello-world%3apull&service=registry.docker.io: net/http: tls handshake timeout. see 'docker run --help'.
然后我又來了一次就好了,應該是墻的原因吧,看著是網絡訪問失敗了~
unable to find image 'hello-world:latest' locally latest: pulling from library/hello-world c04b14da8d14: pull complete digest: sha256:0256e8a36e2070f7bf2d0b0763dbabdd67798512411de4cdcf9431a1feb60fd9 status: downloaded newer image for hello-world:latest hello from docker! this message shows that your installation appears to be working correctly. to generate this message, docker took the following steps: 1. the docker client contacted the docker daemon. 2. the docker daemon pulled the "hello-world" image from the docker hub. 3. the docker daemon created a new container from that image which runs the executable that produces the output you are currently reading. 4. the docker daemon streamed that output to the docker client, which sent it to your terminal. to try something more ambitious, you can run an ubuntu container with: $ docker run -it ubuntu bash share images, automate workflows, and more with a free docker hub account: https://hub.docker.com for more examples and ideas, visit: https://docs.docker.com/engine/userguide/
設置為自啟動:
chkconfig docker on
調整docker數據目錄:
把一個獨立的數據分區設置為docker數據目錄,需手工把docker原目錄的數據都移到新的存儲分區上去,然后以新的存儲分區掛載到/var/lib/docker目錄下。
service docker stop
拷數據及掛分區:
service docker start
4、創建一個專用的docker group
docker是需要使用root權限運行的,但仍然可以通過創建一個專用的用戶組的方式,讓一個具備sudo權限的普通用戶管理docker服務。
復制代碼 代碼如下:
# groupadd docker
# usermod -ag docker bjxtb
退出當前會話,重新登錄后使用bjxtb直接管理docker:
$ docker run hello-world
運行一個 docker 容器:
[root@localhost ~]# docker run -i -t centos /bin/bash [root@dbf66395436d /]#
我們可以看到,centos 容器已經被啟動,并且我們得到了 bash 提示符。在 docker 命令中我們使用了 “-i 捕獲標準輸入輸出”和 “-t 分配一個終端或控制臺”選項。若要斷開與容器的連接,輸入 exit。
[root@cd05639b3f5c /]# cat /etc/redhat-release centoslinux release 7.0.1406(core) [root@cd05639b3f5c /]#exit exit [root@localhost ~]#
我們還可以搜索基于 fedora 和 ubuntu 操作系統的容器。
[root@localhost ~]# docker search ubuntu [root@localhost ~]# docker search fedora
顯示當前正在運行容器的列表
關于“在CentOS7上安裝Docker環境實例分析”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。