Refresh k8s docker versions and references

This commit is contained in:
yeasy
2026-04-21 20:57:33 -07:00
parent d57fb34102
commit 7cb55a0dd6
26 changed files with 379 additions and 98 deletions
+3 -3
View File
@@ -12,7 +12,7 @@
`Alpine` 由非商业组织维护的支持广泛场景的 `Linux` 发行版它特别为资深/重度 `Linux` 用户而优化关注安全性能和资源效能`Alpine` 镜像可以适用于更多常用场景并且是一个优秀的可以适用于生产的基础系统/环境
`Alpine` Docker 镜像也继承了 `Alpine Linux` 发行版的这些优势相比于其他 `Docker` 镜像它的容量非常小压缩后仅约 **3.6 MB**对比 `Ubuntu` 系列镜像约 `28 MB`且拥有非常友好的包管理机制官方镜像来自 `docker-alpine` 项目
`Alpine` Docker 镜像也继承了 `Alpine Linux` 发行版的这些优势相比于其他 `Docker` 镜像它的容量非常小压缩后仅约 **5 MB**对比 `Ubuntu` 系列镜像约 `28 MB`且拥有非常友好的包管理机制官方镜像来自 `docker-alpine` 项目
目前 Docker 官方已开始推荐使用 `Alpine` 替代之前的 `Ubuntu` 做为基础镜像环境这样会带来多个好处包括镜像下载速度加快镜像安全性提高主机之间的切换更方便占用更少磁盘空间等
@@ -20,7 +20,7 @@
```bash
REPOSITORY TAG COMPRESSED SIZE
alpine latest ~3.6 MB
alpine latest ~5 MB
debian latest ~30 MB
ubuntu latest ~28 MB
```
@@ -69,4 +69,4 @@ RUN sed -i "s/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g" /etc/apk/repositories
* `Alpine` 官网https://www.alpinelinux.org/
* `Alpine` 官方仓库https://github.com/alpinelinux
* `Alpine` 官方镜像https://hub.docker.com/\_/alpine/
* `Alpine` 官方镜像仓库https://github.com/gliderlabs/docker-alpine
* `Alpine` 官方镜像仓库https://github.com/alpinelinux/docker-alpine
+2 -2
View File
@@ -17,7 +17,7 @@
#### 使用 Debian 官方镜像
Debian 是一个也是一个常用的基础镜像
Debian 是一个常用的基础镜像
官方提供了大家熟知的 `debian` 镜像以及面向科研领域的 `neurodebian` 镜像可以使用 `docker run` 直接运行 `Debian` 镜像
@@ -25,7 +25,7 @@ Debian 是一个也是一个常用的基础镜像。
```bash
$ docker run -it debian bash
root@668e178d8d69:/# cat /etc/issue
Debian GNU/Linux 8
Debian GNU/Linux 12
```
`Debian` 镜像很适合作为基础镜像构建自定义镜像