Docker入门之——docker镜像加速(1)

一 概述

  • 开源镜象
  • 加速镜像
  • 镜像配置

二 开源镜象

1- SJTU软件源镜像服务

1
https://mirrors.sjtug.sjtu.edu.cn/

2-ISCAS 开源镜像站

1
https://mirror.iscas.ac.cn/

三 加速镜像

1
2
3
4
5
6
7
8
9
10
11
12
13
14
https://mirror.sjtu.edu.cn
https://mirror.iscas.ac.cn
https://hub.atomgit.com
https://docker.m.daocloud.io
https://docker.rainbond.cc
最推荐官方仓库,使用代理魔法通道加速下载
https://hub.docker.com
//加速镜像2
"https://dockerhub.icu",
"https://docker.ckyl.me",
"https://docker.awsl9527.cn",
“https://hub.uuuadc.top",
“https://docker.anyhub.us.kg",
"https://dockerhub.jobcher.com"

四 镜像配置

4.1 Docker desktop

以 Docker desktop为例,Settings—>Docker Engine

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"builder": {
"gc": {
"defaultKeepStorage": "20GB",
"enabled": true
}
},
"experimental": false,
"features": {
"buildkit": true
},
"registry-mirrors": [
"https://mirror.sjtu.edu.cn",
"https://mirror.iscas.ac.cn",
"https://hub.atomgit.com"
]
}

4.2 群晖配置