Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/larshp/nwabap751
Dockerfile for ABAP Developer Edition 7.51 SP02
https://github.com/larshp/nwabap751
abap docker dockerfile
Last synced: 2 months ago
JSON representation
Dockerfile for ABAP Developer Edition 7.51 SP02
- Host: GitHub
- URL: https://github.com/larshp/nwabap751
- Owner: larshp
- License: mit
- Created: 2017-09-09T08:55:16.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2021-03-01T08:50:19.000Z (almost 4 years ago)
- Last Synced: 2024-09-26T13:21:03.666Z (3 months ago)
- Topics: abap, docker, dockerfile
- Language: Dockerfile
- Homepage:
- Size: 10.7 KB
- Stars: 23
- Watchers: 8
- Forks: 7
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# nwabap751
Dockerfile for ABAP Developer Edition 7.51 SP02Download via https://tools.hana.ondemand.com/#abap
Based on https://bitbucket.org/gregorwolf/dockernwabap750
Inspired by https://github.com/nzamani/sap-nw-abap-trial-docker
## Installation
Create folder 'sapdownloads' and copy all .rar installation files to this.
Start command prompt and navigate to project root folder.
Execute commands:
`docker build -t nwabap751 .`
`docker run -p 8000:8000 -p 44300:44300 -p 3300:3300 -p 3200:3200 -h vhcalnplci --name nwabap751 -it nwabap751 /bin/bash`
`/tmp/install.sh`
License key: https://go.support.sap.com/minisap/
Optional:
* note 510007, https://github.com/larshp/abapGit/issues/1225
* ASE license, https://twitter.com/JuliePlummer20/status/976788536950222848## Notes
Docker detach: CTRL + P QDocker attach: `docker attach nwabap751`
Start SAP:
* `su npladm`
* `startsap`Stop SAP:
* `stopsap`Setup Docker for at least 3.5 GB of RAM and 80 GB of disk space.
## Additional remarks when facing issues with file sizes
If you are using Docker Community Edition on OS X10.x you could run in physical volume size limitations, especially when you are a more frequent Docker user.
You can use docker-machine for creating a virtualbox (so you need virtualbox installed on your machine) which only purpose is to run the Docker engine on it. "docker-machine" is part of the local Docker engine installation - if you do not have this command available then please install Docker Toolbox (https://www.docker.com/products/docker-toolbox).
In my example "Virtualbox" needs to be installed on the machine as a precondition as well (https://www.virtualbox.org/).
Use this command to create a virtual machine where Docker engine will be spin up inside:
`docker-machine create -d "virtualbox" --virtualbox-cpu-count "2" --virtualbox-disk-size "150000" --virtualbox-memory "6500" abap`
after success execution you have now a virtual machine (this works also fine for AWS EC2, btw) with 150 GB disk space and 6.5 GB RAM. If you still run into issues you might have to change the file driver.
Use `docker-machine ls`to find the available virtual machines. Use `docker-machine ip abap` to find out the IP address of your virtual host.
Follow the instructions on the screen to connect to it.