Skip to content

Use Dragonwell8 docker images new

lvfei.lv edited this page Nov 14, 2022 · 1 revision

List of Dragonwell images

Below are Docker images published on Aliyun, more images are coming.
You may raise a Dragonwell bug to ask for an image of your OS/arch.

Naming convention of image

${DRAGONWELL_VERSION}-${EDITION}-${OPT}-${OS}(-slim)?
  • DRAGONWELL_VERSION: such as 8.12.13
  • EDITION: standard/extended
  • OPT: ga\d+
  • OS: anolis/alinux/centos/ubuntu/alpine
  • slim: the image whose tag has -slim postfix is specially trimmed for smaller image size, and its functionality may be incomplete for your application

Current supported platforms

| Version | Architecture | Platform | |8 amd64,aarch64 centos,ubuntu,anolis,alinux

Pull the image

For example:

docker pull dragonwell-registry.cn-hangzhou.cr.aliyuncs.com/dragonwell/dragonwell:8.12.13-extended-ga-centos

Run in command line

Just like other images

$ sudo docker run -v $PWD:$PWD -it --rm dragonwell-registry.cn-hangzhou.cr.aliyuncs.com/dragonwell/dragonwell:8.12.13-extended-ga-centos /bin/sh

FROM as base image

Just change the FROM line like below:

FROM dragonwell-registry.cn-hangzhou.cr.aliyuncs.com/dragonwell/dragonwell:8.12.13-extended-ga-centos
# balabala...
Clone this wiki locally