arm64v8/sapmachine
Official SapMachine Docker Image, SAP's build of OpenJDK.
50K+
Note: this is the "per-architecture" repository for the arm64v8
builds of the sapmachine
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.
Maintained by:
The SapMachine Team
Where to get help:
send an email to sapmachine@sap.com
Dockerfile
links17-jre-ubuntu-jammy
, 17-jre-ubuntu-22.04
, 17.0.14-jre-ubuntu-jammy
, 17.0.14-jre-ubuntu-22.04
17-jre-ubuntu-focal
, 17-jre-ubuntu-20.04
, 17.0.14-jre-ubuntu-focal
, 17.0.14-jre-ubuntu-20.04
11-jre-ubuntu-jammy
, 11-jre-ubuntu-22.04
, 11.0.26-jre-ubuntu-jammy
, 11.0.26-jre-ubuntu-22.04
11-jre-ubuntu-focal
, 11-jre-ubuntu-20.04
, 11.0.26-jre-ubuntu-focal
, 11.0.26-jre-ubuntu-20.04
Where to file issues:
GitHub For more information see the SapMachine Wiki.
Supported architectures: (more info)amd64
, arm64v8
, ppc64le
Published image artifact details:
repo-info repo's repos/sapmachine/
directory (history)
(image metadata, transfer size, etc)
Image updates:
official-images repo's library/sapmachine
label
official-images repo's library/sapmachine
file (history)
Source of this description:
docs repo's sapmachine/
directory (history)
SapMachine is a binary distribution of the Open Java Development Kit (OpenJDK). It is built, quality tested and long-term supported by SAP.
SapMachine is the default Java runtime for SAP's Business Technology Platform and it is also supported as a Standard JRE in the Cloud Foundry Java Build Pack.
For more information see the SapMachine website.
Java and all Java-based trademarks and logos are trademarks or registered trademarks of Oracle and/or its affiliates.
You can pull and test the image with the following commands:
docker pull arm64v8/sapmachine:latest
docker run -it arm64v8/sapmachine:latest java -version
You can also use the SapMachine image as a base image to run your own jar file:
FROM arm64v8/sapmachine:latest
RUN mkdir /opt/myapp
COPY myapp.jar /opt/myapp
CMD ["java", "-jar", "/opt/myapp/myapp.jar"]
You can then build and run your own Docker image:
docker build -t myapp .
docker run -it --rm myapp
The Dockerfiles and associated scripts are licensed under the Apache License 2.0.
Licenses for the SapMachine product installed within the images:
SapMachine is licensed under the GNU General Public License (GPL) version with the "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 sapmachine/
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 pull arm64v8/sapmachine