各版本区别
| 版本 | 说明 | 示例 |
|---|---|---|
| alpine | Alpine Linux 操作系统,它是一个独立发行版本,相比较 Debian 操作系统来说 Alpine,更加轻巧 https://alpinelinux.org/ | docker pull node:alpine3.14 |
| squeeze | Debian 6 | |
| wheezy | Debian 7 | |
| jessie | Debian 8,更旧的稳定(oldoldstable)版,马上就淘汰了 2015https://wiki.debian.org/DebianJessie | docker pull node:10.22.0-jessie |
| stretch | Debian 9,旧的稳定(oldstable)版,现有长期支持 2017,比较老,目前除了 LTS 其他版本已经不再提供技术支持了,所以我们非必要情况下还是不要选择它比较好https://wiki.debian.org/DebianStretch | docker pull node:lts-stretch |
| buster | Debian 10,当前的稳定(stable)版 2019,比较新,支持比较全面,受广大Debian爱好者的好评!像 PHP、Python 之类的语言、应用都会使用这个版本的 Debian 搭建 Docker 基础镜像https://wiki.debian.org/DebianBuster | docker pull node:lts-buster |
| bullseye | Debian 11,即将上位的稳定(stable)版 2021https://wiki.debian.org/DebianBullseye | docker pull node:lts-bullseye |
| xxx-slim | 一般都基于 Debian 和 glibc,删除了许多非必需的软件包,优化了体积 | docker pull node:stretch-slimdocker pull node:buster-slim |
参考
- https://blog.csdn.net/timonium/article/details/119023016
Docker镜像制作常用官方基础系统镜像的选择 - https://zhuanlan.zhihu.com/p/374508641
Docker的几种精简版本Buster、Alpine、Stretch比较 - https://www.cnblogs.com/bjlhx/p/13202589.html
021-docker镜像多版本tag-alpine,slim,stretch,jessie - https://stackoverflow.com/questions/52083380/in-docker-image-names-what-is-the-difference-between-alpine-jessie-stretch-an
In Docker image names what is the difference between Alpine, Jessie, Stretch, and Buster? - https://www.jianshu.com/p/bcfc6f8706f5
Docker 基础镜像 - https://blog.csdn.net/dcr782195101/article/details/122330234
02.docker镜像的区别--Alpine、Slim、Stretch、Buster、Jessie、Bullseye - https://wiki.debian.org/DebianReleases
DebianReleases

本文介绍了Docker常用的基础镜像版本,包括Alpine、squeeze、wheezy、jessie、stretch、buster和bullseye,详细解析了各个版本的特点和适用场景。特别提到了slim版本,它基于Debian并优化了体积。建议根据项目需求选择最新且受支持的稳定版本,如buster或bullseye。
1871

被折叠的 条评论
为什么被折叠?



