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:

  • openjdk:<version>

The defacto image. Use it if unsure.

  • openjdk:<version>-stretch and openjdk:<version>-jessie

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

  • openjdk:<version>-alpine

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.

  • openjdk:<version>-slim

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.

  • openjdk:<version>-windowsservercore

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

最新文章

  1. 地图四叉树一般用在GIS中,在游戏寻路中2D游戏中一般用2维数组就够了
  2. hibernate5ID生成策略
  3. winform最小化后隐藏到右下角,单击或双击后恢复 .
  4. thread启动线程
  5. 检查密码复杂度的C#正则表达式
  6. Nginx HTTP负载均衡和反向代理配置
  7. TreeSize工具介绍
  8. 实现checkbox组件化(Component)
  9. Robotium Recorder的初试
  10. Include and Require
  11. codeforces magic five --快速幂模
  12. 【HDOJ】2045 不容易系列之(3)—— LELE的RPG难题
  13. 開始折腾cocos2d-x,使用批处理来创建项目
  14. Gora官方范例
  15. eclipse 导入git库 Android工程
  16. phthon网络编程
  17. python 常用库
  18. Postman Post请求上传文件
  19. unicode解码
  20. Windows查看服务

热门文章

  1. webpack四个基础概念
  2. MAC——Homebrew介绍和使用
  3. 初识阿里开源的本地Java进程监控调试工具arthas(阿尔萨斯)
  4. SQL Server 2019 中标量用户定义函数性能的改进
  5. 【rt-thread】1、快速建立rt-thread nano最小裁剪工程
  6. 4. Spark Streaming解析
  7. (六)pdf的构成之文件体(pages对象)
  8. 【Linux】Ubuntu修改root用户密码
  9. yii框架里DetailView视图和GridView的区别
  10. Java中守护线程的总结