Skip to content

Use Dragonwell8 docker image

joeyleeeeeee97 edited this page Nov 25, 2021 · 20 revisions

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.

Image:Tag arch OS slim?
registry.cn-hangzhou.aliyuncs.com/dragonwell/dragonwell:dragonwell-8.8.9_jdk8u302-ga_x86_64_slim x86_64 centos Yes
registry.cn-hangzhou.aliyuncs.com/dragonwell/dragonwell:dragonwell-8.8.9_jdk8u302-ga_aarch64_slim aarch64 centos Yes
registry.cn-hangzhou.aliyuncs.com/dragonwell/dragonwell:dragonwell-8.8.9_jdk8u302-ga_x86_64 x86_64 centos No
registry.cn-hangzhou.aliyuncs.com/dragonwell/dragonwell:dragonwell-8.8.9_jdk8u302-ga_aarch64 aarch64 centos No
registry.cn-hangzhou.aliyuncs.com/dragonwell/dragonwell8:dragonwell-8.7.7_jdk8u292-ga x86_64 centos No
registry.cn-hangzhou.aliyuncs.com/dragonwell/dragonwell8:dragonwell-8.7.7_jdk8u292-ga aarch64 centos No
registry.cn-hangzhou.aliyuncs.com/dragonwell/dragonwell8:dragonwell-8.6.6_jdk8u282-ga x86_64 centos No
registry.cn-hangzhou.aliyuncs.com/dragonwell/dragonwell8:dragonwell-8.6.6_jdk8u282-ga aarch64 centos No
registry.cn-hangzhou.aliyuncs.com/dragonwell/dragonwell8:8.5.5-FP1_alpine_x86_64_8u275-b2 x86_64 alpine No
registry.cn-hangzhou.aliyuncs.com/dragonwell/dragonwell8:8.5.5-FP1_alpine_x86_64_8u275-b2_slim x86_64 alpine Yes
registry.cn-hangzhou.aliyuncs.com/dragonwell/dragonwell8:8.5.5-FP1_centos_aarch64_8u275-b2 aarch64 centos No
registry.cn-hangzhou.aliyuncs.com/dragonwell/dragonwell8:8.5.5-FP1_centos_aarch64_8u275-b2_slim aarch64 centos Yes
registry.cn-hangzhou.aliyuncs.com/dragonwell/dragonwell8:8.4.4-GA_alpine_x86_64_8u262-b10 x86_64 alpine No
registry.cn-hangzhou.aliyuncs.com/dragonwell/dragonwell8:8.4.4-GA_alpine_x86_64_8u262-b10_slim x86_64 alpine Yes
registry.cn-hangzhou.aliyuncs.com/dragonwell/dragonwell8:8.3.3-GA_alpine_x86_64_8u242-b98 x86_64 alpine No
registry.cn-hangzhou.aliyuncs.com/dragonwell/dragonwell8:8.3.3-GA_alpine_x86_64_8u242-b98_slim x86_64 alpine Yes
registry.cn-hangzhou.aliyuncs.com/dragonwell/dragonwell8:8.2.2-GA_alpine_x86_64_8u232-b82 x86_64 alpine No
registry.cn-hangzhou.aliyuncs.com/dragonwell/dragonwell8:8.2.2-GA_alpine_x86_64_8u232-b82_slim x86_64 alpine Yes
registry.cn-hangzhou.aliyuncs.com/dragonwell/dragonwell8:8.1.1-GA_alpine_x86_64_8u222-b67 x86_64 alpine No
registry.cn-hangzhou.aliyuncs.com/dragonwell/dragonwell8:8.1.1-GA_alpine_x86_64_8u222-b67_slim x86_64 alpine Yes
registry.cn-hangzhou.aliyuncs.com/dragonwell/dragonwell8:8.0.0-GA_alpine_x86_64_8u212-b04 x86_64 alpine No
registry.cn-hangzhou.aliyuncs.com/dragonwell/dragonwell8:8.0.0-GA_alpine_x86_64_8u212-b04_slim x86_64 alpine Yes

The image whose tag has _slim postfix is specially trimmed for smaller image size, and its functionality may be incomplete for your application.

Pull the image

For example:

docker pull registry.cn-hangzhou.aliyuncs.com/dragonwell/dragonwell8:8.4.4-GA_alpine_x86_64_8u262-b10

Run in command line

Just like other images

$ sudo docker run -v $PWD:$PWD -it --rm registry.cn-hangzhou.aliyuncs.com/dragonwell/dragonwell8:8.4.4-GA_alpine_x86_64_8u262-b10 /bin/sh

FROM as base image

Just change the FROM line like below:

FROM registry.cn-hangzhou.aliyuncs.com/dragonwell/dragonwell8:8.4.4-GA_alpine_x86_64_8u262-b10
# balabala...
Clone this wiki locally