amd64/openjdkNote: this is the "per-architecture" repository for the amd64 builds of the openjdk official image -- for more information, see "Architectures other than amd64?" in the official images documentation and "An image's source changed in Git, now what?" in the official images FAQ.
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):
amazoncorrettoeclipse-temurinibm-semeru-runtimesibmjavasapmachineSee 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
Dockerfile links(See "What's the difference between 'Shared' and 'Simple' tags?" in the FAQ.)
26-ea-29-jdk-oraclelinux9, 26-ea-29-oraclelinux9, 26-ea-jdk-oraclelinux9, 26-ea-oraclelinux9, 26-ea-29-jdk-oracle, 26-ea-29-oracle, 26-ea-jdk-oracle, 26-ea-oracle
26-ea-29-jdk-oraclelinux8, 26-ea-29-oraclelinux8, 26-ea-jdk-oraclelinux8, 26-ea-oraclelinux8
26-ea-29-jdk-trixie, 26-ea-29-trixie, 26-ea-jdk-trixie, 26-ea-trixie
26-ea-29-jdk-slim-trixie, 26-ea-29-slim-trixie, 26-ea-jdk-slim-trixie, 26-ea-slim-trixie, 26-ea-29-jdk-slim, 26-ea-29-slim, 26-ea-jdk-slim, 26-ea-slim
26-ea-29-jdk-bookworm, 26-ea-29-bookworm, 26-ea-jdk-bookworm, 26-ea-bookworm
26-ea-29-jdk-slim-bookworm, 26-ea-29-slim-bookworm, 26-ea-jdk-slim-bookworm, 26-ea-slim-bookworm
27-ea-3-jdk-oraclelinux9, 27-ea-3-oraclelinux9, 27-ea-jdk-oraclelinux9, 27-ea-oraclelinux9, 27-ea-3-jdk-oracle, 27-ea-3-oracle, 27-ea-jdk-oracle, 27-ea-oracle
27-ea-3-jdk-oraclelinux8, 27-ea-3-oraclelinux8, 27-ea-jdk-oraclelinux8, 27-ea-oraclelinux8
27-ea-3-jdk-trixie, 27-ea-3-trixie, 27-ea-jdk-trixie, 27-ea-trixie
27-ea-3-jdk-slim-trixie, 27-ea-3-slim-trixie, 27-ea-jdk-slim-trixie, 27-ea-slim-trixie, 27-ea-3-jdk-slim, 27-ea-3-slim, 27-ea-jdk-slim, 27-ea-slim
27-ea-3-jdk-bookworm, 27-ea-3-bookworm, 27-ea-jdk-bookworm, 27-ea-bookworm
27-ea-3-jdk-slim-bookworm, 27-ea-3-slim-bookworm, 27-ea-jdk-slim-bookworm, 27-ea-slim-bookworm
26-ea-29-jdk, 26-ea-29, 26-ea-jdk, 26-ea:
26-ea-29-jdk-oraclelinux927-ea-3-jdk, 27-ea-3, 27-ea-jdk, 27-ea:
27-ea-3-jdk-oraclelinux9Where to file issues:
[***]
Supported architectures: (more info)
amd64, arm64v8, windows-amd64
Published image artifact details:
repo-info repo's repos/openjdk/ directory (history)
(image metadata, transfer size, etc)
Image updates:
official-images repo's library/openjdk label
official-images repo's library/openjdk file (history)
Source of this description:
docs repo's openjdk/ 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.
***.org/wiki/OpenJDK
Java is a registered trademark of Oracle and/or its affiliates.
!logo
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:
dockerfileFROM amd64/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:
console$ 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:
console$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp amd64/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:
console$ 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 amd64/openjdk images come in many flavors, each designed for a specific use case.
amd64/openjdk:<version>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 trixie 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.
amd64/openjdk:<version> (from 12 onwards), amd64/openjdk:<version>-oracle and amd64/openjdk:<version>-oraclelinux8Starting 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.
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.

探索更多轩辕镜像的使用方法,找到最适合您系统的配置方式
通过 Docker 登录认证访问私有仓库
在 Linux 系统配置镜像服务
在 Docker Desktop 配置镜像
Docker Compose 项目配置
Kubernetes 集群配置 Containerd
K3s 轻量级 Kubernetes 镜像加速
在宝塔面板一键配置镜像
Synology 群晖 NAS 配置
飞牛 fnOS 系统配置镜像
极空间 NAS 系统配置服务
爱快 iKuai 路由系统配置
绿联 NAS 系统配置镜像
QNAP 威联通 NAS 配置
Podman 容器引擎配置
HPC 科学计算容器配置
ghcr、Quay、nvcr 等镜像仓库
无需登录使用专属域名
需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单
免费版仅支持 Docker Hub 访问,不承诺可用性和速度;专业版支持更多镜像源,保证可用性和稳定速度,提供优先客服响应。
专业版支持 docker.io、gcr.io、ghcr.io、registry.k8s.io、nvcr.io、quay.io、mcr.microsoft.com、docker.elastic.co 等;免费版仅支持 docker.io。
当返回 402 Payment Required 错误时,表示流量已耗尽,需要充值流量包以恢复服务。
通常由 Docker 版本过低导致,需要升级到 20.x 或更高版本以支持 V2 协议。
先检查 Docker 版本,版本过低则升级;版本正常则验证镜像信息是否正确。
使用 docker tag 命令为镜像打上新标签,去掉域名前缀,使镜像名称更简洁。
来自真实用户的反馈,见证轩辕镜像的优质服务