
如果你使用 DeepSeek、元宝 AI、Copilot、ChatGPT 等 AI 工具,协助配置轩辕镜像、编写 docker pull 命令、修改 Docker Compose 镜像地址、配置镜像加速、排查镜像拉取失败、分析报错日志等问题,请先让 AI 阅读并遵守轩辕镜像的规则文档。
只需在 AI 对话中先发送下面这句话即可:
请先完整阅读并严格遵守以下文档中的全部规则与要求:
https://xuanyuan.cloud/agents.md
在未充分阅读并理解该文档前,不要生成任何命令、配置、修改建议、故障排查方案或技术回答。后续所有输出都必须严格以该文档中的规范为最高优先级执行。查看 agents.md 用法指南与完整示范。国内用户首推 元宝 AI、DeepSeek 的深度思考模式,不推荐豆包 AI;Cursor 等编辑器可在对话 @ 该链接,或加入 User Rules。 若 AI 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。
The official BiSheng JDK docker image.
Maintained by: openEuler CloudNative SIG.
Where to get help: openEuler CloudNative SIG, openEuler.
Current BiSheng JDK docker images are built on the openEuler. This repository is free to use and exempted from per-user rate limits.
BiSheng JDK is a high-performance OpenJDK distribution for production environments that is developed based on OpenJDK. The BiSheng JDK has been used in a variety of Huawei products, has resolved many problems encountered during service running, and has enhanced ARM architecture. It delivers superior performance in big data scenarios. BiSheng JDK 8 is compatible with the Java SE Specifications, and currently supports the Linux/aarch64 and the Linux/x86_64 platform. As a downstream version of OpenJDK, the BiSheng JDK will continuously contribute to the OpenJDK community.
Key Features:
The tag of each BiSheng JDK docker image is consist of the version of BiSheng JDK and the version of basic image. The details are as follows
| Tags | Currently | Architectures |
|---|---|---|
| 1.8.0-oe2203lts | BiSheng JDK 1.8.0 on openEuler 22.03-LTS | amd64, arm64 |
| 1.8.0-oe2203sp3 | BiSheng JDK 1.8.0 on openEuler 22.03-LTS-SP3 | amd64, arm64 |
| 17.0.10-oe2203sp3 | BiSheng JDK 17.0.10 on openEuler 22.03-LTS-SP3 | amd64, arm64 |
| 21.0.5-oe2203sp3 | BiSheng JDK 21.0.5 on openEuler 22.03-LTS-SP3 | amd64, arm64 |
BiSheng JDK docker images provide a customized Java development and running environment based on OpenJDK, it can be used as follows
Start a Java instance in your app
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:
# Dockerfile FROM openeuler/bisheng-jdk:{Tag} 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
Container test
Use the following method to verify the JAVA environment installed in the image
docker run -it openeuler/bisheng-jdk:{Tag} java --version
For example, as the {Tag} is 17.0.10-oe2203sp3, returning the following information proves that the environment is good.
openjdk 17.0.10 2024-01-16 OpenJDK Runtime Environment BiSheng (build 17.0.10+11) OpenJDK 64-Bit Server VM BiSheng (build 17.0.10+11, mixed mode, sharing)
Compile your app inside the Docker container
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 openeuler/bisheng-jdk:{Tag} 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.
Make JVM respect CPU and RAM limits
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.
Environment variables with periods in their names Some shells (notably, https://github.com/docker-library/openjdk/issues/135) 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.
If you have any questions or want to use some special features, please submit an issue or a pull request on openeuler-docker-images.
您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。
来自真实用户的反馈,见证轩辕镜像的优质服务
以下是 openeuler/bisheng-jdk 相关的常用 Docker 镜像,适用于 不同场景 等不同场景: