REF: https://docs.wso2.com/display/IS570/Configuring+a+SP+and+IdP+Using+Configuration+Files I first clone the following in a new directory of mine: https://github.com/MrClemRkz/iam-with-wso2 Then I am planing to use Alpine docker as of wso2-is docker repo has mentioned. https://github.com/wso2/docker-is/tree/master/dockerfiles/alpine/is
Setup guide: [ link ] At each change you may run the following bash file to on Unix environment for run the dockers. $ sh docker-up.sh OpenLDAP Add object classes We first have to add following object classes: [ link ] After when you have downloaded the ldif files setup them on a folder so that they can be copied in to ldap image we are building.[ link ] Observe here we do not use Dockerfile or docker-compose.yml to run ldap commands. This is because we cannot use the docker command 'RUN' for 'ldapadd' since the slapd service (ldap service name) need to be up and running first. So basic docker practice is using 'CMD' to run the command when the container is up. Yet having 'CMD' run will mess up openldap image developed by Osixia (so some reason I have not disclosed yet). For this I used a bash file to run the docker-compose and then execute commands on ldap container with given container name. Add Organizational Units Add Organizati...