davidcaste/debian-tomcat
Yet another Debian Docker image for Tomcat, Java with unlimited JCE patch applied
10K+
Basic Docker image to run Tomcat and Java applications, based on Debian Jessie. This image is patched with Java Cryptographic Extension (JCE) Unlimited Strength Jurisdiction Policy Files.
It also includes Bash, since many Java applications like to have convoluted Bash start-up scripts.
Extends davidcaste/debian-oracle-java
.
Tomcat 8 Version: 8.0.33
Tomcat 7 Version: 7.0.69
JRE8/JDK8 Version: 8u92-b14
JRE7/JDK7 Version: 7u80-b15
Some indications:
/opt/tomcat
($TOMCAT_HOME
/$CATALINA_HOME
). Executable scripts are found in directory $TOMCAT_HOME/bin
and the application base (appBase) directory is $TOMCAT_HOME/webapps
.catalina.out
is managed by the variable $CATALINA_OUT
, and its value by default is /dev/null
(disabled)./logs/
.There are two ways to use this image:
FROM davidcaste/debian-tomcat:tomcat8
.war
files directly into the appBase directory. For example:docker run -it --rm davidcaste/debian-tomcat /opt/tomcat/bin/catalina.sh run
docker cp ./sample.war tomcat-ci:/opt/tomcat/webapps/sample.war
docker pull davidcaste/debian-tomcat