Skip to content

Use Dragonwell8 docker image

Jonathan Lu edited this page Oct 16, 2019 · 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/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.1.1-GA_alpine_x86_64_8u222-b67

Run in command line

Just like other images

$ sudo docker run -v $PWD:$PWD -it --rm registry.cn-hangzhou.aliyuncs.com/dragonwell/dragonwell8:8.1.1-GA_alpine_x86_64_8u222-b67 /bin/sh

FROM as base image

Just change the FROM line like below:

FROM registry.cn-hangzhou.aliyuncs.com/dragonwell/dragonwell8:8.0.0-GA_alpine_x86_64_8u212-b04
# balabala...
Clone this wiki locally