Update SAPCC 2.13.2
This commit is contained in:
parent
d392a2ebcb
commit
09f691cff4
2 changed files with 30 additions and 6 deletions
|
@ -11,7 +11,7 @@ FROM centos:7
|
||||||
|
|
||||||
# SAPJVM and SAPCC version
|
# SAPJVM and SAPCC version
|
||||||
# check https://tools.hana.ondemand.com/#cloud
|
# check https://tools.hana.ondemand.com/#cloud
|
||||||
ARG SAPCC_VERSION=2.13.1
|
ARG SAPCC_VERSION=2.13.2
|
||||||
ARG SAPJVM_VERSION=8.1.075
|
ARG SAPJVM_VERSION=8.1.075
|
||||||
|
|
||||||
# working setup dir
|
# working setup dir
|
||||||
|
@ -31,7 +31,7 @@ RUN wget --no-check-certificate --no-cookies --header "Cookie: eula_3_1_agreed=t
|
||||||
wget --no-check-certificate --no-cookies --header "Cookie: eula_3_1_agreed=tools.hana.ondemand.com/developer-license-3_1.txt; path=/;" -S https://tools.hana.ondemand.com/additional/sapjvm-$SAPJVM_VERSION-linux-x64.rpm && \
|
wget --no-check-certificate --no-cookies --header "Cookie: eula_3_1_agreed=tools.hana.ondemand.com/developer-license-3_1.txt; path=/;" -S https://tools.hana.ondemand.com/additional/sapjvm-$SAPJVM_VERSION-linux-x64.rpm && \
|
||||||
unzip sapcc-$SAPCC_VERSION-linux-x64.zip && \
|
unzip sapcc-$SAPCC_VERSION-linux-x64.zip && \
|
||||||
rpm -i sapjvm-$SAPJVM_VERSION-linux-x64.rpm && \
|
rpm -i sapjvm-$SAPJVM_VERSION-linux-x64.rpm && \
|
||||||
rpm -i com.sap.scc-ui-$SAPCC_VERSION-8.x86_64.rpm
|
rpm -i com.sap.scc-ui-$SAPCC_VERSION-5.x86_64.rpm
|
||||||
|
|
||||||
# clean up previously installed rpm packages
|
# clean up previously installed rpm packages
|
||||||
RUN rm /tmp/sapcc/*.rpm
|
RUN rm /tmp/sapcc/*.rpm
|
||||||
|
|
32
README.md
32
README.md
|
@ -1,7 +1,31 @@
|
||||||
# SAP Cloud Connector Docker Image
|
# SAP Cloud Connector Docker Image
|
||||||
|
|
||||||
This image is built with :
|
## This image is built with
|
||||||
|
|
||||||
- CentOS 7
|
- CentOS
|
||||||
- SAP JVM : 8.1.075
|
- SAP JVM
|
||||||
- SAP Cloud Connector : 2.13.1
|
- SAP Cloud Connector
|
||||||
|
|
||||||
|
## Release notes
|
||||||
|
|
||||||
|
- v3
|
||||||
|
- SAP Cloud Connector 2.13.2
|
||||||
|
- v2
|
||||||
|
- SAP Cloud Connector 2.13.1
|
||||||
|
- SAP JVM 8.1.075
|
||||||
|
- CentOS 7
|
||||||
|
|
||||||
|
## Pre-Built Docker Image
|
||||||
|
|
||||||
|
Docker Hib : https://hub.docker.com/r/makoto2600/sapcc
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
---
|
||||||
|
version: "2.1"
|
||||||
|
services:
|
||||||
|
sapcc:
|
||||||
|
image: makoto2600/sapcc:latest
|
||||||
|
container_name: sapcc
|
||||||
|
network_mode: host
|
||||||
|
restart: unless-stopped
|
||||||
|
```
|
||||||
|
|
Loading…
Reference in a new issue