Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

README.md

The Apache Tomcat Lab

Overview

Labs

Lab01 - Bring up Tomcat

docker run -dit --name my-tomcat-app -p 9190:8080 tomcat:9.0

Note: as of docker-library/tomcat#181⁠, the upstream-provided (example) webapps are not enabled by default, per upstream's security recommendations⁠, but are still available under the webapps.dist folder within the image to make them easier to re-enable.

Open http://localhost:9190 in your browser (noting that it will return a 404 since there are no webapps loaded by default).