Explorar o código

Added sapmachine.

Rene Schuenemann %!s(int64=6) %!d(string=hai) anos
pai
achega
659aed0ac4

+ 1 - 0
sapmachine/README-short.txt

@@ -0,0 +1 @@
+Official SapMachine Docker Image.

+ 35 - 0
sapmachine/content.md

@@ -0,0 +1,35 @@
+### Overview
+
+The image in this repository contains 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](https://cloudplatform.sap.com/index.html) and it is also supported as a [Standard JRE](https://github.com/cloudfoundry/java-buildpack/blob/master/docs/jre-sap_machine_jre.md) in the [Cloud Foundry Java Build Pack](https://github.com/cloudfoundry/java-buildpack).
+
+For more information see the [SapMachine website](https://sapmachine.io).
+
+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:
+
+```console
+docker pull %%IMAGE%%:latest
+docker run -it %%IMAGE%%:latest java -version
+```
+
+You can also use the SapMachine image as a base image to run your own jar file:
+
+```dockerfile
+FROM %%IMAGE%%: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:
+
+```console
+docker build -t myapp .
+docker run -it --rm myapp
+```

+ 1 - 0
sapmachine/get-help.md

@@ -0,0 +1 @@
+send an email to [email protected]

+ 1 - 0
sapmachine/github-repo

@@ -0,0 +1 @@
+https://github.com/SAP/SapMachine

+ 2 - 0
sapmachine/issues.md

@@ -0,0 +1,2 @@
+[GitHub](%%GITHUB-REPO%%/issues)
+For more information see the [SapMachine Wiki](%%GITHUB-REPO%%/wiki).

+ 5 - 0
sapmachine/license.md

@@ -0,0 +1,5 @@
+The Dockerfiles and associated scripts are licensed under the [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0.html).
+
+Licenses for the SapMachine product installed within the images:
+
+SapMachine is licensed under the [GNU General Public License (GPL) version with the "CLASSPATH" exception](%%GITHUB-REPO%%/blob/sapmachine/LICENSE).

+ 1 - 0
sapmachine/maintainer.md

@@ -0,0 +1 @@
+[The SapMachine Team](%%GITHUB-REPO%%)