This image is officially deprecated and all users are recommended to find and use suitable replacements ASAP. Some examples of other Official Image alternatives (listed in alphabetical order with no intentional or implied preference):
See docker-library/openjdk#505 for more information.
The only tags which will continue to receive updates beyond July 2022 will be Early Access builds (which are sourced from jdk.java.net), as those are not published/supported by any of the above projects.
-
Maintained by:
the Docker Community -
Where to get help:
the Docker Community Slack, Server Fault, Unix & Linux, or Stack Overflow
(See "What's the difference between 'Shared' and 'Simple' tags?" in the FAQ.)
-
24-ea-4-jdk
,24-ea-4
,24-ea-jdk
,24-ea
,24-jdk
,24
: -
24-ea-4-jdk-windowsservercore
,24-ea-4-windowsservercore
,24-ea-jdk-windowsservercore
,24-ea-windowsservercore
,24-jdk-windowsservercore
,24-windowsservercore
: -
24-ea-4-jdk-nanoserver
,24-ea-4-nanoserver
,24-ea-jdk-nanoserver
,24-ea-nanoserver
,24-jdk-nanoserver
,24-nanoserver
: -
23-ea-29-jdk
,23-ea-29
,23-ea-jdk
,23-ea
,23-jdk
,23
: -
23-ea-29-jdk-windowsservercore
,23-ea-29-windowsservercore
,23-ea-jdk-windowsservercore
,23-ea-windowsservercore
,23-jdk-windowsservercore
,23-windowsservercore
: -
23-ea-29-jdk-nanoserver
,23-ea-29-nanoserver
,23-ea-jdk-nanoserver
,23-ea-nanoserver
,23-jdk-nanoserver
,23-nanoserver
:
-
Where to file issues:
https://github.com/docker-library/openjdk/issues -
Supported architectures: (more info)
amd64
,arm64v8
,windows-amd64
-
Published image artifact details:
repo-info repo'srepos/openjdk/
directory (history)
(image metadata, transfer size, etc) -
Image updates:
official-images repo'slibrary/openjdk
label
official-images repo'slibrary/openjdk
file (history) -
Source of this description:
docs repo'sopenjdk/
directory (history)
OpenJDK (Open Java Development Kit) is a free and open source implementation of the Java Platform, Standard Edition (Java SE). OpenJDK is the official reference implementation of Java SE since version 7.
Java is a registered trademark of Oracle and/or its affiliates.
The most straightforward way to use this image is to use a Java container as both the build and runtime environment. In your Dockerfile
, writing something along the lines of the following will compile and run your project:
FROM openjdk:11
COPY . /usr/src/myapp
WORKDIR /usr/src/myapp
RUN javac Main.java
CMD ["java", "Main"]
You can then run and build the Docker image:
$ docker build -t my-java-app .
$ docker run -it --rm --name my-running-app my-java-app
There may be occasions where it is not appropriate to run your app inside a container. To compile, but not run your app inside the Docker instance, you can write something like:
$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp openjdk:11 javac Main.java
This will add your current directory as a volume to the container, set the working directory to the volume, and run the command javac Main.java
which will tell Java to compile the code in Main.java
and output the Java class file to Main.class
.
On startup the JVM tries to detect the number of available CPU cores and RAM to adjust its internal parameters (like the number of garbage collector threads to spawn) accordingly. When the container is ran with limited CPU/RAM then the standard system API used by the JVM for probing it will return host-wide values. This can cause excessive CPU usage and memory allocation errors with older versions of the JVM.
Inside Linux containers, OpenJDK versions 8 and later can correctly detect the container-limited number of CPU cores and available RAM. For all currently supported OpenJDK versions this is turned on by default.
Inside Windows Server (non-Hyper-V) containers, the limit for the number of available CPU cores doesn't work (it's ignored by Host Compute Service). To set the limit manually the JVM can be started as:
$ start /b /wait /affinity 0x3 path/to/java.exe ...
In this example CPU affinity hex mask 0x3
will limit the JVM to 2 CPU cores.
RAM limit is supported by Windows Server containers, but currently the JVM cannot detect it. To prevent excessive memory allocations, -XX:MaxRAM=...
option must be specified with the value that is not bigger than the containers RAM limit.
Some shells (notably, the BusyBox /bin/sh
included in Alpine Linux) do not support environment variables with periods in the names (which are technically not POSIX compliant), and thus strip them instead of passing them through (as Bash does). If your application requires environment variables of this form, either use CMD ["java", ...]
directly (no shell), or (install and) use Bash explicitly instead of /bin/sh
.
The openjdk
images come in many flavors, each designed for a specific use case.
This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of.
Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of Debian and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian.
Starting with openjdk:12
the default image as well as the -oracle
and -oraclelinux8
variants are based on the official Oracle Linux 8 image which is provided under the GPLv2 as per the Oracle Linux End User Agreement (EULA).
The -oraclelinux7
variants are based on the official Oracle Linux 7 image which is provided under the GPLv2 as per the Oracle Linux End User Agreement (EULA).
The OpenJDK binaries are built by Oracle and are sourced from the OpenJDK community. These binaries are licensed under the GPLv2 with the Classpath Exception.
This image is based on Windows Server Core (microsoft/windowsservercore
). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016.
For information about how to get Docker running on Windows, please see the relevant "Quick Start" guide provided by Microsoft:
View license information for the software contained in this image.
As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).
Some additional license information which was able to be auto-detected might be found in the repo-info
repository's openjdk/
directory.
As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.