AXP Digital Enablement Platform [Internal Gateway]
407
AXP DEP (Digital Enablement Platform) is an API management and monetization platform which supports all aspects of an API business, including creating, publishing, consuming, discovery, and monetization of APIs.
The following command starts a Linux Ubuntu-based Internal Gateway Docker image.
docker run --name igw -d -p 3306:3306 -p 8243:8243 -p 8280:8280 -p 9443:9443 -p 9444:9444 -p 9763:9763 -p 5005:5005 chathurabuddika/igw
Here, only ports 3306, 8243, 8280, 9443, and 9444 have been mapped to the corresponding Docker host (host machine on top of which containers are spawned) ports. You may map other container service ports to Docker host ports as desired.
The Docker exec command allows you to run commands inside a Docker container. The following command line will give you a bash shell inside the container you created:
$ docker exec -it igw bash
To start DEP and KM nodes use the following commands inside the container:
cd /IGW/wso2telcohub-4.1.0-SNAPSHOT/bin/
./axpserver.sh
cd /IGW/wso2is-km-5.6.0/bin/
./wso2server.sh start
To access the DEP Carbon Management Console, use the Docker host IP and port 9443 as follows:
https://{DOCKER_HOST}:9443/carbon/
To access the KM Carbon Management Console, use the Docker host IP and port 9444 as follows:
https://{DOCKER_HOST}:9444/carbon/
To access the DEP Publisher, use the Docker host IP and port 9443 as follows:
https://{DOCKER_HOST}:9443/publisher/
To access the DEP store, use the Docker host IP and port 9443 as follows:
https://{DOCKER_HOST}:9443/store/
To access the DEP manage service, use the Docker host IP and port 9443 as follows:
https://{DOCKER_HOST}:9443/manage-service/
To access the DEP activity explorer, use the Docker host IP and port 9443 as follows:
https://{DOCKER_HOST}:9443/activiti-explorer/
Content type
Image
Digest
Size
1.4 GB
Last updated
almost 6 years ago
docker pull chathurabuddika/igw