bellsoft/liberica-openjdk-debian
Liberica is a 100% open-source Java implementation by BellSoft
5M+
Liberica JDK is free and 100% open-source Progressive Java Runtime for modern Java deployments. It is developed and supported by BellSoft, a major OpenJDK contributor. Application development with Liberica JDK is
Liberica JDK is recommended and used by Spring as the end-to-end solution for Spring Native applications. BellSoft serves millions of developers and companies from various industries across the globe. For more information, visit www.bell-sw.com.
We compiled an interactive scheme that will help you decide which BellSoft’s image is perfect for your project.
This repository contains the Liberica JDK images for Debian available for following architectures:
The tags point at the Java version (right after the OS name) and supported architecture. Image name structure: X-Y, where X is the Java version and Y is the architecture type. If the architecture type is not included into the name, then the build supports AMD64 and ARM64 by default. The ‘latest’ tag points to the latest version of an image. Images with '-cds' in tag contain CDS (Class Data Sharing) archive. For instance, bellsoft/liberica-openjdk-debian:17 is an image with Liberica JDK version 17 (the latest release) for Debian running on AMD64 or ARM64
latest
,
latest-cds
,
23.0.1-13
,
23.0.1-13-cds
23.0.1
,
23.0.1-cds
23-38
,
23-38-cds
23
,
23-cds
22
,
22-cds
21.0.5-11
,
21.0.5-11-cds
,
21.0.5
,
21.0.5-cds
,
21.0.4-9
,
21.0.4-9-cds
,
21.0.4
,
21.0.4-cds
,
21.0.3-10
,
21.0.3-10-cds
,
21.0.3
,
21.0.3-cds
,
21.0.1-12
,
21.0.1-12-cds
,
21.0.1
,
21.0.1-cds
,
21
,
21-cds
20
19
18
17.0.13-12
,
17.0.13-12-cds
,
17.0.13
,
17.0.13-cds
,
17.0.12-10
,
17.0.12-10-cds
,
17.0.12
,
17.0.12-cds
,
17.0.11-10
,
17.0.11-10-cds
,
17.0.11
,
17.0.11-cds
,
17
,
17-cds
16
15
14
13
12
11.0.25-11
,
11.0.25-11-cds
,
11.0.25
,
11.0.25-cds
,
11.0.24-9
,
11.0.24-9-cds
,
11.0.24
,
11.0.24-cds
,
11.0.23-10
,
11.0.23-10-cds
,
11.0.23
,
11.0.23-cds
,
11.0.21-10
,
11.0.21-10-cds
,
11.0.21
,
11.0.21-cds
,
11
,
11-cds
10
- armhf only (Raspberry Pi 2/3)9.0.1
- armhf only (Raspberry Pi 2/3)8u432-7
,
8u432-7-cds
,
8u432
,
8u432-cds
,
8u422-6
,
8u422-6-cds
,
8u422
,
8u422-cds
,
8u412-9
,
8u412-9-cds
,
8u412
,
8u412-cds
,
8u392-9
,
8u392-9-cds
,
8u392
,
8u392-cds
,
8u
,
8u-cds
,
8
,
8-cds
- amd64 and aarch64 onlyFor example, you can run a Liberica OpenJDK 17 container with the following command:
docker run -it --rm bellsoft/liberica-openjdk-debian:latest java -version
To run some application you can create Dockerfile, based on bellsoft/liberica-openjdk-debian image or mount volume with your code/applicaiton, for example:
docker run -it --rm -v /home/user/project/:/data bellsoft/liberica-openjdk-debian:latest java -jar /data/MyApp.jar
LIBERICA_USE_LITE
– defines content of JDK for this image. 0
means keep jdk unchanged, 1
(default) creates lite image, where demos, samples and sources are removed from image.LIBERICA_IMAGE_VARIANT
– possible image variants are:
base
– server VM with java.base
module.base-minimal
– minimal VM with java.base
module.lite
(default) – lite JDK with minimal footprint.standard
– standard JDK.LIBERICA_VM
– this option defines included VM for lite and standard image variant. Possible values are:
server
(default) – add server
VM to image.client
– add client
VM to image.minimal
– add minimal
VM to image.all
– add all VMs from original bundle to image.docker pull bellsoft/liberica-openjdk-debian