So before meddling with configuration, we can run Identity Server right on spot with downloaded zip file [download].
Prerequisites for the server is:
- Java 7 or 8
Let's first download the zip and run the server and make sure there's no failure in it.
Unzip and goto folder on terminal and run
Unix
Unzip and goto folder on terminal and run
Unix
$ sh bin/wso2server.sh
Windows
Find the docker image for the sever to run. In this case I realized best to find the lowest possible capacity consuming docker with OS.
C:/> wso2server.sh
Find the docker image for the sever to run. In this case I realized best to find the lowest possible capacity consuming docker with OS.
For this I have 3 options as below:
- ubuntu + java
- size on disk: 778MB
- Ubuntu 16.04 with Java 8
- docker link
- oracle linux + java
- size on disk: 280MB
- Oracle Linux 7.5 with Java 8
- docker link
- alpine + java
- size on disk: 126MB
- Apline 3.7.1 with Java 8
- docker link
Then we have to copy Identity Server files to selected image. At this stage I thought of going with ubuntu, since I have worked and tested on it successfully, and it is also the most preferred in testing.
I got my WSO2 IS 5.6 successfully run on ubuntu using this github repo.
I got my WSO2 IS 5.6 successfully run on ubuntu using this github repo.
By now you have successfully created wso2 IS docker image, ready to run!Although, we are not complete yet. We have to prepare the docker to be easily be accepting dynamic config values.
Comments
Post a Comment