其他分享
首页 > 其他分享> > docker镜像里的tag那些事--alpine,slim,stretch,jessie

docker镜像里的tag那些事--alpine,slim,stretch,jessie

作者:互联网

https://stackoverflow.com/questions/54954187/docker-images-types-slim-vs-slim-stretch-vs-stretch-vs-alpine

这里有详细说明:

Per docker library docs (quote and links below), here's a summary:

The defacto image. Use it if unsure.

jessie or stretch are the suite code names for releases of Debian and indicate which release the image is based on.

Similarly, this image is based on the Alpine Linux, thus being a very small base image. It is recommended if you need an image size is as small as possible. The caveat is that it uses some unusual libs, but shouldn't be a problem for most software. In doubt, check the official docs below.

This image only contains the minimal packages needed to run Java (and is missing many of the UI-related Java libraries, for instance). Unless you are working in an environment where only the openjdk image will be deployed and you have space constraints, the default image is recommended over this one.

This image is based on Windows Server Core (microsoft/windowsservercore).

 

标签:jessie,based,stretch,image,slim,openjdk,alpine
来源: https://www.cnblogs.com/aguncn/p/11014376.html