80

我只是在https://hub.docker.com/_/node/中查看 docker 图像

对于每个版本,图像都分为 Alpine、Jessie、Stretch、Buster 等。它们的含义是什么?

4

2 回答 2

98

在 docker-Context 中,这里是您需要的重要信息。

  1. Alpine
    网址:https:
    //alpinelinux.org/ 图片名称:alpine
    Shorty:它非常小。
    Packagemanger:apk
    壳:/bin/sh
    大小:几 MB - 当前标签需要 2.7MB

  2. Jessie又名 Debian 8
    网址:https:
    //wiki.debian.org/DebianJessie Imagename:debian:jessie
    Shorty:不再有 LTS
    Packagemanager :apt
    Shell:/bin/bash
    大小:~50mb

  3. Stretch aka Debian 9
    Url:https:
    //wiki.debian.org/DebianStretch Imagename:debian:stretch
    Shorty:LTS 即将用完 Packagemanager
    apt
    Shells:/bin/bash等等 大小:~ 40mb

  4. Buster aka Debian 10
    Url:https:
    //wiki.debian.org/DebianBuster Imagename:debian:buster
    Shorty:所有您需要的,但更新的
    Packagemanager:apt
    Shell:/bin/bash还有更多
    大小:~50mb

  5. Bullseye又名 Debian 11
    网址:https:
    //wiki.debian.org/DebianBullseye 图像名称:debian:bullseye
    Shorty:最新的 debian
    Shells:/bin/bash还有更多
    大小:~50mb

  6. 基于 debain 的Ubuntu
    网址:https
    ://hub.docker.com/_/ubuntu 镜像名称:ubuntu
    Shorty:所有你需要的 Packagemanager
    apt
    Shell:/bin/bash等等
    大小:~25mb

于 2020-01-14T10:11:34.003 回答
45

这些是运行 Node 的容器中操作系统的名称。

Alpine 用于 Alpine Linux,Jessie 和 Stretch 是 Debian 的版本。如果您向下滚动您提供的文档链接,您会找到一个描述 Alpine 是什么以及您可能想要使用它的原因的部分。

于 2018-08-29T18:07:03.230 回答