-
Maintained by:
IBM Semeru Runtimes -
Where to get help:
the Docker Community Forums, the Docker Community Slack, or Stack Overflow
(See "What's the difference between 'Shared' and 'Simple' tags?" in the FAQ.)
open-8u312-b07-jdk-focal
,open-8-jdk-focal
open-8u312-b07-jdk-centos7
,open-8-jdk-centos7
open-8u312-b07-jre-focal
,open-8-jre-focal
open-8u312-b07-jre-centos7
,open-8-jre-centos7
open-11.0.13_8-jdk-focal
,open-11-jdk-focal
open-11.0.13_8-jdk-centos7
,open-11-jdk-centos7
open-11.0.13_8-jre-focal
,open-11-jre-focal
open-11.0.13_8-jre-centos7
,open-11-jre-centos7
open-16.0.2_7-jdk-focal
,open-16-jdk-focal
open-16.0.2_7-jdk-centos7
,open-16-jdk-centos7
open-16.0.2_7-jre-focal
,open-16-jre-focal
open-16.0.2_7-jre-centos7
,open-16-jre-centos7
open-8u312-b07-jdk
,open-8-jdk
:open-8u312-b07-jre
,open-8-jre
:open-11.0.13_8-jdk
,open-11-jdk
:open-11.0.13_8-jre
,open-11-jre
:open-16.0.2_7-jdk
,open-16-jdk
:open-16.0.2_7-jre
,open-16-jre
:
-
Where to file issues:
GitHub; The IBM Semeru Runtimes support page has more information on quality, roadmap and other details for IBM Semeru Runtime Open Edition builds; -
Supported architectures: (more info)
amd64
,arm64v8
,ppc64le
,s390x
-
Published image artifact details:
repo-info repo'srepos/ibm-semeru-runtimes/
directory (history)
(image metadata, transfer size, etc) -
Image updates:
official-images repo'slibrary/ibm-semeru-runtimes
label
official-images repo'slibrary/ibm-semeru-runtimes
file (history) -
Source of this description:
docs repo'sibm-semeru-runtimes/
directory (history)
The images in this repository contain OpenJDK binaries that are built by IBM Semeru Runtimes.
The IBM Semeru Runtimes are free production-ready open source binaries built with the OpenJDK class libraries and the Eclipse OpenJ9 JVM, which delivers the power and performance to run your Java applications, when you need it most.
To run a pre-built japp.jar file with the latest OpenJDK 11, use the following Dockerfile:
FROM ibm-semeru-runtimes:11
RUN mkdir /opt/app
COPY japp.jar /opt/app
CMD ["java", "-jar", "/opt/app/japp.jar"]
You can build and run the Docker Image as shown in the following example:
docker build -t japp .
docker run -it --rm japp
If you are using a distribution that we don't provide an image for you can copy the JDK using a similar Dockerfile to the one below:
# Example
FROM <base image>
ENV JAVA_HOME=/opt/java/openjdk
COPY --from=ibm-semeru-runtimes:11 $JAVA_HOME $JAVA_HOME
ENV PATH="${JAVA_HOME}/bin:${PATH}"
The Dockerfiles and associated scripts are licensed under the Apache License, Version 2.0.
Licenses for the products installed within the images:
- IBM Semeru Runtime Open Edition: The project license is GNU GPL v2 with Classpath Exception.
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 ibm-semeru-runtimes/
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.