docker
docker
官址:
docs.docker.com/install/linux/docker-ce/centos
安装
yum install -y yum-utils \
device-mapper-persistent-data \
lvm2
#安装 Docker 官方源
sudo yum-config-manager \
--add-repo \
https://download.docker.com/linux/centos/docker-ce.repo
如果有问题用这个下:
yum-config-manager \
--add-repo \
http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo #添加软件源信息
#更新源
yum makecache fast
#安装
yum install -y docker-ce
添加阿里镜像加速
vim /etc/docker/daemon.json
{
"registry-mirrors": ["https://wnyeooju.mirror.aliyuncs.com"]
}
注:https://wnyeooju.mirror.aliyuncs.com 为aliyun镜像加速器地址
systemctl daemon-reload
systemctl restart docker
启动并且设置开机自启
systemctl start docker && systemctl enable docker
常用命令
systemctl start docker.service #启动服务
systemctl enable docker.service #开机启动服务
systemctl restart docker #重启
systemctl stop docker.service #停止服务
docker pull centos #下载映像到本地
docker --help #查看帮助命令
docker ps #查看容器
docker images #查看镜像
卸载
systemctl stop docker
yum -y remove docker-ce
rm -rf /var/lib/docker