/Docker_files-

Docker files for setting up virtual application development environment in AWS

Docker files Installation Guide

The Folder Test1 Contains Docker File for Installation of Python.

Firstly build the Docker image by

$docker build .

Then run it by

$ sudo docker run -it <imagename>

The floder Tomcat contains docker file of installtion of tomcat.

Similar to above build the docker image and then run it

$ docker run -d -p 8080:8080 <image_id>

Check it by

$ curl http://localhost:8080

The folder DockerCompose conatains two different docker file one and two which can be composed using an yml file.

Also if in case you want to run a application on your AWS Instance you can do it by creating a GUI.

Refer for installation details here HERE