A basic tutorial on running a web app on Tomcat using Docker
See tutorial here - https://www.softwareyoga.com/docker-tomact-tutorial/
- Install Docker.
- Clone this repository - $git clone https://github.com/softwareyoga/docker-tomcat-tutorial.git
- cd 'docker-tomcat-tutorial'
- $docker build -t mywebapp .
- $docker run -p 80:8080 mywebapp
- http://localhost:80