Build a simple Java Spring REST api and deploy it in form of a docker contianer
git clone https://github.com/anupam-ncsu/springLambdaJavaAws.git
mvn clean install
Assuming you have docker installed on your system (I used docker toolbox for windows)
docker build -t <containerName>:<tag>.
docker run -p 8080:8080 <containerName>:<tag>
192.168.99.100:8080/getcolor
This IP is provided by docker when it runs. Most cases its this same one.
list all running contaniers
docker ps
stop the container that you want
docker stop <containerName>:<tag>