本配置基于互联网环境,仅供学习使用
1.更新环境:
wget -O /etc/yum.repos.d/Centos-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel.repo
2.配置linux网络转发
cat << EOF > /etc/sysctl.d/docker.conf
net.bridge.bridge-nf-call-ip6tables = 1
net.bridge.bridge-nf-call-iptables = 1
net.ipv4.conf.default.rp_filter = 0
net.ipv4.conf.all.rp_filter = 0
net.ipv4.ip_forward =1
3.配置docker仓库源(阿里云)
curl -o /etc/yum.repos.d/docker-ce.repo http://mirrors.aliyun.com/doker-ce/linux/centos/docker-ce.repo
curl -o /etc/yum.repos.d/Centos-7.repo http://mirrors.aliyun.com/repo/Centos-7.repo
#清理缓存
yum clean all
#重建缓存
yum makecache
4.下载docker
yum install docker-ce-20.10.6 -y
5.配置加速器
mkdir -p /etc/docker
touch /etc/docker/daemon.json
vim /etc/docker/daemon.json
#输入{ "registry-mirrors" : [ "https://8xpk5wnt.mirror.aliyuncs.com" ] }
systemctl daemon-reload
systemctl enable docker
systemctl restart docker
6.查看docker
docker version
二、启动第一个docker
1.获取image(镜像)
#搜索镜像文件
docker search nginx
#下载镜像
docker pull nginx
#删除镜像
#docker rmi 容器ID/名字
#查看镜像
docker image ls
#运行镜像
#docker run 参数 镜像的名字/ID
docker run -d -p 80:80 nginx
#-d 后台运行 -p 80:80 宿主机端口:docker端口 。映射将外部的端口映射到docker内部的端口
#查看docker的程序
docker ps
#网页访问服务器IP以及对应端口查看
#进入正在运行的docker
docker exec -it 容器ID/名称 /bin/bash/