摘要:默認情況下屬于用戶和具有權限用戶的使用范疇。出于這個原因,守護進程需要一直在用戶下面運行。為了避免運行命令的時候需要使用命令,創建一個叫的用戶組并將需要運行的用戶添加進去。驗證運行已不再需要命令開機運行
官方原文鏈接 https://docs.docker.com/engine/installation/centos/
通過yum安裝需要root或者能sudo的權限
yum包更新到最新
$ sudo yum update
添加Docker yum源
$ sudo tee /etc/yum.repos.d/docker.repo <<-"EOF" [dockerrepo] name=Docker Repository baseurl=https://yum.dockerproject.org/repo/main/centos/$releasever/ enabled=1 gpgcheck=1 gpgkey=https://yum.dockerproject.org/gpg EOF
安裝Docker包
$ sudo yum install docker-engine
啟動Docker守護進程
$ sudo service docker start
通過測試鏡像運行一個容器來驗證Docker是否安裝正確
$ sudo docker run hello-world Unable to find image "hello-world:latest" locally latest: Pulling from hello-world a8219747be10: Pull complete 91c95931e552: Already exists hello-world:latest: The image you are pulling has been verified. Important: image verification is a tech preview feature and should not be relied on to provide security. Digest: sha256:aa03e5d0d5553b4c3473e89c8619cf79df368babd1.7.1cf5daeb82aab55838d 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. (Assuming it was not already locally available.) 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 For more examples and ideas, visit: http://docs.docker.com/userguide/通過腳本安裝
需要root或者能sudo的權限
yum包更新到最新
$ sudo yum update
運行Docker安裝腳本
$ curl -sSL https://get.docker.com/ | sh
這個腳本會添加docker.repo倉庫并且安裝Docker
啟動Docker守護進程
$ sudo service docker start
通過測試鏡像運行一個容器來驗證Docker是否安裝正確
$ sudo docker run hello-world創建一個Docker用戶組
docker守護進程綁定在Unix socket 而不是 TCP 端口。默認情況下Unix socket屬于root用戶和具有sudo權限用戶的使用范疇。出于這個原因,docker守護進程需要一直在root用戶下面運行。
To avoid having to use sudo when you use the docker command, create a Unix group called docker and add users to it. When the docker daemon starts, it makes the ownership of the Unix socket read/writable by the docker group.
為了避免運行docker命令的時候需要使用sudo命令,創建一個叫docker的Unix用戶組并將需要運行docker的用戶添加進去。當開始運行docker守護進程,會令docker用戶組的成員擁有Unix socket的讀寫權限。
創建docker用戶組并添加用戶:
需要root或者能sudo的權限
創建docker用戶組并添加用戶
sudo usermod -aG docker your_username
退出并且登錄到your_username,如果在your_username下也建議退出再重新登錄一次,這確保您的用戶正在運行正確的權限。
驗證運行docker已不再需要sudo命令
$ docker run hello-world開機運行docker
$ sudo chkconfig docker on
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/26518.html
摘要:的版本的版本分為社區版和企業版,想了解更多可以去官網查看其中分為和版本為季度發布版本,例如發布周期為一個季度為月度發布版本,例如發布周期為一個月安裝前先在官網查看支持的平臺,不同系統下的安裝方法也都可以在官網找到,這里以在下安裝為例下 Docker的版本 Docker的版本分為Docker-ce社區版和Docker-ee企業版,想了解更多可以去官網查看其中Docker-ce分為stab...
摘要:官方教程一查看內核是否符合要求版本內核版本以上以上查看內核版本二安裝卸載舊版本的舊版本名稱為或者。如果安裝過舊版本的需要先卸載安裝最新版本的最新版本的分兩個版本,和。我們安裝社區版。 官方教程:https://docs.docker.com/insta... 一、查看內核是否符合要求 CentOS版本 內核版本 CentOS 7 x64 3.10 以上 CentOS 6....
摘要:在系統啟動時自動啟動如果您希望在啟動時啟動,請參閱配置以在啟動時啟動。前言: Docker 是一個用于開發、傳送和運行應用程序的開放平臺。Docker 使您能夠將應用程序與基礎設施分開,以便您可以快速交付軟件。使用 Docker,您可以像管理應用程序一樣管理基礎設施。通過利用 Docker 的快速交付、測試和部署代碼的方法,您可以顯著減少編寫代碼和在生產中運行代碼之間的延遲。為了讓開發、部...
摘要:背景已經出來了很久,而我一直想混跡到大軍中進行沖鋒陷陣,恰逢公司項目的需要,因此今天玩了一把的安裝事先準備系統或者系統安裝步驟安裝基礎的工具添加倉庫因為在阿里云的機器上面,鏡像使用的阿里云的,找不到的鏡像,所以需要第一步 背景 docker已經出來了很久,而我一直想混跡到docker大軍中進行沖鋒陷陣,恰逢公司項目的需要,因此今天玩了一把docker的安裝 事先準備 centos系統或...
閱讀 2907·2021-11-15 18:02
閱讀 3801·2021-10-14 09:43
閱讀 3733·2021-09-08 10:41
閱讀 2522·2019-08-30 15:53
閱讀 1804·2019-08-30 14:14
閱讀 1943·2019-08-29 16:12
閱讀 3139·2019-08-29 14:03
閱讀 1280·2019-08-29 13:46