Run update.sh

This commit is contained in:
Docker Library Bot 2019-06-25 00:22:56 +00:00
parent 2158db126a
commit 9ca7f09e2d
1 changed files with 97 additions and 0 deletions

97
sapmachine/README.md Normal file
View File

@ -0,0 +1,97 @@
<!--
********************************************************************************
WARNING:
DO NOT EDIT "sapmachine/README.md"
IT IS AUTO-GENERATED
(from the other files in "sapmachine/" combined with a set of templates)
********************************************************************************
-->
# Supported tags and respective `Dockerfile` links
- [`11`, `11.0.3`, `lts`](https://github.com/SAP/SapMachine-infrastructure/blob/89924265b4359478b58a29207f0dfe7323b18784/dockerfiles/official/lts/Dockerfile)
- [`12`, `12.0.1`, `latest`](https://github.com/SAP/SapMachine-infrastructure/blob/89924265b4359478b58a29207f0dfe7323b18784/dockerfiles/official/stable/Dockerfile)
# Quick reference
- **Where to get help**:
send an email to sapmachine@sap.com
- **Where to file issues**:
[GitHub](https://github.com/SAP/SapMachine/issues) For more information see the [SapMachine Wiki](https://github.com/SAP/SapMachine/wiki).
- **Maintained by**:
[The SapMachine Team](https://github.com/SAP/SapMachine)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/sapmachine/)
- **Published image artifact details**:
[repo-info repo's `repos/sapmachine/` directory](https://github.com/docker-library/repo-info/blob/master/repos/sapmachine) ([history](https://github.com/docker-library/repo-info/commits/master/repos/sapmachine))
(image metadata, transfer size, etc)
- **Image updates**:
[official-images PRs with label `library/sapmachine`](https://github.com/docker-library/official-images/pulls?q=label%3Alibrary%2Fsapmachine)
[official-images repo's `library/sapmachine` file](https://github.com/docker-library/official-images/blob/master/library/sapmachine) ([history](https://github.com/docker-library/official-images/commits/master/library/sapmachine))
- **Source of this description**:
[docs repo's `sapmachine/` directory](https://github.com/docker-library/docs/tree/master/sapmachine) ([history](https://github.com/docker-library/docs/commits/master/sapmachine))
- **Supported Docker versions**:
[the latest release](https://github.com/docker/docker-ce/releases/latest) (down to 1.6 on a best-effort basis)
### 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 sapmachine:latest
docker run -it sapmachine:latest java -version
```
You can also use the SapMachine image as a base image to run your own jar file:
```dockerfile
FROM 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:
```console
docker build -t myapp .
docker run -it --rm myapp
```
# License
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](https://github.com/SAP/SapMachine/blob/sapmachine/LICENSE).
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](https://github.com/docker-library/repo-info/tree/master/repos/sapmachine).
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.