Sign inSign up

sapmachine/lts

By sapmachine

•Updated about 5 years ago

SapMachine Long Term Support releases

Image
2

10K+

sapmachine/lts repository overview

⁠Overview

The image in this repository contains Long Term Support releases of the SapMachine Java virtual machine (JVM). SapMachine is an OpenJDK based JVM that is build, quality tested and long-term supported by SAP. It is the default JVM on the SAP Cloud Platform⁠ and it is also supported as a Standard JRE⁠ in the Cloud Foundry Java Build Pack⁠.

For more information see the SapMachine website⁠.

The SapMachine image supports the x86/64 architecture.

Java and all Java-based trademarks and logos are trademarks or registered trademarks of Oracle and/or its affiliates.

⁠How to use this Image

You can pull and test the image with the following commands:

docker pull sapmachine/lts:latest
docker run -it sapmachine/lts:latest java -version

You can also use the SapMachine image as a base image to run your own jar file:

FROM sapmachine/lts: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

Tag summary

Content type

Image

Digest

Size

224.2 MB

Last updated

about 5 years ago

docker pull sapmachine/lts