需要root或者能sudo的权限
- yum update -y
-
- yum remove docker docker-common docker-selinux docker-engine
-
- yum install -y yum-utils device-mapper-persistent-data lvm2
-
- yum-config-manager --add-repo https://mirrors.ustc.edu.cn/docker-ce/linux/centos/docker-ce.repo
- yum makecache fast && yum install -y docker-ce
- service docker start
- systemctl start docker.service # centos7
- systemctl enable docker.service # 开机启动
- systemctl disable docker.service # 关闭开机启动
- docker run hello-world
-
需要root或者能sudo的权限
- $ sudo yum update
- $ curl -sSL https://get.docker.com/ | sh
这个脚本会添加docker.repo仓库并且安装Docker
- $ sudo service docker start
- $ 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的读写权限。
- sudo usermod -aG docker your_username
- $ docker run hello-world
- $ sudo chkconfig docker on
-