立即注册  找回密码
 立即注册
CeraNetworksBGVM服务器主机交流会员请立即修改密码Sharktech防护
查看: 56|回复: 8

国内服务器如何安装DOCKER?

[复制链接]

国内服务器如何安装DOCKER?

[复制链接]

12

主题

107

回帖

654

积分

高级会员

积分
654
黄局长

12

主题

107

回帖

654

积分

高级会员

积分
654
2023-11-10 16:22:51 | 显示全部楼层 |阅读模式
大佬你们都懂的,国内现在都访问不了DOCKER 有什么办法挂国内源安装?
回复

使用道具 举报

6

主题

18

回帖

128

积分

注册会员

积分
128
rbc

6

主题

18

回帖

128

积分

注册会员

积分
128
2023-11-10 16:26:34 | 显示全部楼层
curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun
回复

使用道具 举报

23

主题

215

回帖

981

积分

高级会员

积分
981
Debians

23

主题

215

回帖

981

积分

高级会员

积分
981
2023-11-10 16:35:00 | 显示全部楼层
国内这么多镜像
回复

使用道具 举报

12

主题

107

回帖

654

积分

高级会员

积分
654
黄局长 楼主

12

主题

107

回帖

654

积分

高级会员

积分
654
2023-11-10 16:24:18 | 显示全部楼层

Debians 发表于 2023-11-10 16:24

国内这么多镜像

给个网站教程看看
回复

使用道具 举报

66

主题

1771

回帖

4244

积分

论坛元老

积分
4244
xftaw

66

主题

1771

回帖

4244

积分

论坛元老

积分
4244
2023-11-10 16:25:38 | 显示全部楼层
https://www.runoob.com/docker/docker-mirror-acceleration.html



小尾巴~~~~~

要不要看看我的探针qwq>>>>>

看签名>>>
回复

使用道具 举报

43

主题

3785

回帖

9273

积分

论坛元老

积分
9273
jqbaobao

43

主题

3785

回帖

9273

积分

论坛元老

积分
9273
2023-11-10 16:24:00 | 显示全部楼层

黄局长 发表于 2023-11-10 16:25

给个网站教程看看

一、CentOS 7使用阿里源实现Docker安装
官方库的Repo可能出现不能拉Docker镜像的BUG(404)所以这里我用阿里源
yum remove -y docker  docker-common docker-selinux docker-engine
yum install -y yum-utils device-mapper-persistent-data lvm2
yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
yum list docker-ce --showduplicates | sort -r
yum -y install docker-ce
systemctl start docker
systemctl enable docker
1.1 Debian使用阿里源实现Docker安装
apt install apt-transport-https ca-certificates curl software-properties-common -y
curl -fsSL https://mirrors.aliyun.com/docker-ce/linux/debian/gpg | apt-key add -
add-apt-repository "deb [arch=amd64 trusted=yes] https://mirrors.aliyun.com/docker-ce/linux/debian $(lsb_release -cs) stable"
#或者 直接
echo "deb [arch=amd64 trusted=yes] https://mirrors.aliyun.com/docker-ce/linux/debian $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker-ce.list
apt update -y
apt install docker-ce -y
systemctl start docker
systemctl enable docker
1.2 Ubuntu 22使用阿里源实现Docker安装
apt update -y
apt install -y apt-transport-https ca-certificates curl software-properties-common
add-apt-repository "deb [arch=amd64 trusted=yes] https://mirrors.aliyun.com/docker-ce/linux/ubuntu $(lsb_release -cs) stable"
#或者 直接
echo "deb [arch=amd64 trusted=yes] https://mirrors.aliyun.com/docker-ce/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker-ce.list
apt update -y
apt install docker-ce -y
systemctl start docker
systemctl enable docker
回复

使用道具 举报

40

主题

95

回帖

464

积分

中级会员

积分
464
三月七

40

主题

95

回帖

464

积分

中级会员

积分
464
2023-11-10 16:25:54 | 显示全部楼层
wget -qO- https://get.docker.com/ | bash

其实用它这个自动脚本,多来几遍怎么都能装上。不行就配置个shell代理:

export https_proxy="socks5://127.0.0.1:1080"

export http_proxy="socks5://127.0.0.1:1080"

然后再用他的脚本装
回复

使用道具 举报

13

主题

92

回帖

439

积分

中级会员

积分
439
伊吹風子

13

主题

92

回帖

439

积分

中级会员

积分
439
2023-11-10 16:26:11 | 显示全部楼层
7楼正解,安装完后再换个阿里云的docker镜像源就一切正常了。
回复

使用道具 举报

12

主题

107

回帖

654

积分

高级会员

积分
654
黄局长 楼主

12

主题

107

回帖

654

积分

高级会员

积分
654
2023-11-10 16:25:00 | 显示全部楼层
先谢谢楼上的几位大佬了
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|小黑屋|HS2V主机综合交流论坛

GMT+8, 2024-11-22 09:13 , Processed in 0.082773 second(s), 4 queries , Gzip On, Redis On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表