2021-06-16 21:28:16 +00:00
|
|
|
# SAP Cloud Connector Docker Image
|
2021-06-16 21:35:28 +00:00
|
|
|
|
2022-01-11 19:11:50 +00:00
|
|
|
Dockerfile to build a SAP Cloud Connector (SAPCC) Docker image.
|
|
|
|
|
|
|
|
The goal of this image is to deploy in seconds a fully working SAP Cloud Connector.
|
2021-08-04 18:16:08 +00:00
|
|
|
|
2021-08-04 18:04:04 +00:00
|
|
|
## This image is built with
|
2021-06-16 21:41:43 +00:00
|
|
|
|
2021-08-04 18:04:04 +00:00
|
|
|
- CentOS
|
|
|
|
- SAP JVM
|
|
|
|
- SAP Cloud Connector
|
|
|
|
|
|
|
|
## Release notes
|
|
|
|
|
2022-11-24 18:09:21 +00:00
|
|
|
- v7
|
|
|
|
- SAP JVM 8.1.091
|
|
|
|
- SAP Cloud Connector 2.15.0
|
2022-09-30 17:45:46 +00:00
|
|
|
- v6
|
|
|
|
- SAP JVM 8.1.090
|
|
|
|
- SAP Cloud Connector 2.14.2
|
2022-01-11 19:11:50 +00:00
|
|
|
- v5
|
|
|
|
- SAP JVM 8.1.083
|
|
|
|
- SAP Cloud Connector 2.14.0.1
|
|
|
|
- Cloud Connector configuration is saved in Docker volumes (/opt/sap/scc/config & /opt/sap/scc/scc_config)
|
2021-09-07 11:49:24 +00:00
|
|
|
- v4
|
2022-01-11 19:11:50 +00:00
|
|
|
- SAP JVM 8.1.078
|
2021-08-04 18:04:04 +00:00
|
|
|
- v3
|
2022-01-11 19:11:50 +00:00
|
|
|
- SAP Cloud Connector 2.13.2
|
2021-08-04 18:04:04 +00:00
|
|
|
- v2
|
2022-01-11 19:11:50 +00:00
|
|
|
- SAP Cloud Connector 2.13.1
|
|
|
|
- SAP JVM 8.1.075
|
|
|
|
- CentOS 7
|
2021-08-04 18:04:04 +00:00
|
|
|
|
|
|
|
## Pre-Built Docker Image
|
|
|
|
|
2021-08-04 18:16:08 +00:00
|
|
|
You can use a pre-built Docker Image available on Docker Hub with the Docker Compose example below.
|
|
|
|
|
|
|
|
Docker Hub : https://hub.docker.com/r/makoto2600/sapcc
|
2021-08-04 18:04:04 +00:00
|
|
|
|
|
|
|
```yaml
|
|
|
|
---
|
|
|
|
services:
|
|
|
|
sapcc:
|
|
|
|
image: makoto2600/sapcc:latest
|
|
|
|
container_name: sapcc
|
2022-01-11 19:11:50 +00:00
|
|
|
volumes:
|
|
|
|
- sapcc_config:/opt/sap/scc/config
|
|
|
|
- sapcc_scc_config:/opt/sap/scc/scc_config
|
2021-08-04 18:04:04 +00:00
|
|
|
network_mode: host
|
|
|
|
restart: unless-stopped
|
2022-01-11 19:11:50 +00:00
|
|
|
volumes:
|
|
|
|
sapcc_config:
|
|
|
|
sapcc_scc_config:
|
2021-08-04 18:04:04 +00:00
|
|
|
```
|