-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added some information on installation steps.
- Loading branch information
1 parent
be6aaa7
commit 5d49bc8
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,30 @@ | ||
# sap-nw-abap-docker | ||
SAP NetWeaver ABAP Developer Edition in Docker | ||
|
||
# Installation | ||
|
||
A detailed blog on how to get this image and container up and running can be found on my blog: [DOCKERFILE FOR SAP NETWEAVER ABAP 7.5X DEVELOPER EDITION](https://www.itsfullofstars.de/2017/09/dockerfile-for-sap-netweaver-abap-7-5x-developer-edition/) | ||
|
||
## Short version | ||
|
||
1. Download your version of [SAP NetWeaver ABAP 7.5x Developer Edition from SAP](https://tools.hana.ondemand.com/#abap). The files are compressed (RAR). Un-compress them into a folder named NW751. The folder must be at the same location where your Dockerfile is. | ||
|
||
2. Build the Docker image | ||
|
||
```sh | ||
docker build -t nwabap . | ||
``` | ||
|
||
3. Start container | ||
|
||
```sh | ||
docker run -P -h vhcalnplci --name nwabap751 -it nwabap:latest /bin/bash | ||
``` | ||
|
||
4. Start NetWeaver installation | ||
|
||
```sh | ||
run.sh | ||
``` | ||
|
||
5. Done. NetWeaver ABAP is installed and ready to be used. Users, credentials, etc can be found in the fie readme.html shipped with the NetWeaver ABAP RAR files. |