Docker安装篇(CentOS7.6)
7.6环境自带gcc和gcc-c++,不用再装
安装yum-utils
yum install -y yum-utils
设置阿里云镜像仓库
yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
建立缓存(centOS8的话去掉fast)
yum makecache fast
安装
yum -y install docker-ce docker-ce-cli container.io
运行
systemctl start docker
查看进程
ps -ef| grep docker
在阿里云,容器镜像服务->镜像工具->获取加速器地址后,然后按他提供的设置命令执行即可,分4次执行
sudo mkdir -p /etc/docker
sudo tee /etc/docker/daemon.json <<-'EOF' { "registry-mirrors": ["阿里云上的地址"] } EOF
sudo systemctl daemon-reload
sudo systemctl restart docker
然后可以测试hello world
docker run hello-world
设置开机启动
systemctl enable docker