Ubuntu 22.04配置镜像

配置apt源 /etc/apt/sources.list

1
2
3
4
5
6
7
8
9
10
11
12
13
14
deb https://mirrors.aliyun.com/ubuntu/ jammy main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/ jammy main restricted universe multiverse

deb https://mirrors.aliyun.com/ubuntu/ jammy-security main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/ jammy-security main restricted universe multiverse

deb https://mirrors.aliyun.com/ubuntu/ jammy-updates main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/ jammy-updates main restricted universe multiverse

# deb https://mirrors.aliyun.com/ubuntu/ jammy-proposed main restricted universe multiverse
# deb-src https://mirrors.aliyun.com/ubuntu/ jammy-proposed main restricted universe multiverse

deb https://mirrors.aliyun.com/ubuntu/ jammy-backports main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/ jammy-backports main restricted universe multiverse

配置Docker-ce镜像

1、信任 Docker 的 GPG 公钥

1
2
curl -fsSL https://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
chmod a+r /etc/apt/keyrings/docker.gpg

2、写入Docker-ce软件源信息

1
2
3
4
5
echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://mirrors.aliyun.com/docker-ce/linux/ubuntu \
"$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" | \
tee /etc/apt/sources.list.d/docker.list > /dev/null \
apt-get update

3、安装Docker

1
apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

4、配置docker加速&代理

1、配置加速地址

1
2
3
4
5
6
7
cat > /etc/docker/daemon.json <<EOF
{
"registry-mirrors": [
"https://docker-hub.pages.dev/"
]
}
EOF

2、配置代理http或者socks5

需要自己提前搭建好了代理服务才能使用

1
2
3
4
5
6
7
//Http
{
"proxies": {
"http-proxy": "http://127.0.0.1:1080",
"https-proxy": "https://127.0.0.1:1080"
}
}
1
2
3
4
5
6
7
//Socke5
{
"proxies": {
"http-proxy": "socks5://127.0.0.1:1080",
"https-proxy": "socks5://127.0.0.1:1080"
}
}

3、配置后需要重启Docker

1
systemctl restart docker.service

Linux用户下配置/清除代理

1
2
3
4
5
6
7
8
9
10
11
//Socks5
export http_proxy="socks5://127.0.0.1:1080"
export https_proxy="socks5://127.0.0.1:1080"

//http
export http_proxy="http://127.0.0.1:1080"
export https_proxy="https://127.0.0.1:1080"

//清除代理
unset http_proxy
unset https_proxy

Ubuntu 22.04配置镜像
https://blog.ttk2.cn/2022/09/18/ubuntu-mirror-docker/
作者
清欢
发布于
2022年9月18日
许可协议