annotate tomcat/Dockerfile @ 7:72f33ca6aa5b

add admin password and custom CATALINA_OPS
author smith@nwoca.org
date Mon, 14 Sep 2015 13:06:10 +0100
parents 9b74645ce4a4
children b65e777478f3
rev   line source
4
b5534ea9a4cb initial tomcat dockerfile
smith@nwoca.org
parents:
diff changeset
1 FROM tomcat:8.0.26-jre8
b5534ea9a4cb initial tomcat dockerfile
smith@nwoca.org
parents:
diff changeset
2
b5534ea9a4cb initial tomcat dockerfile
smith@nwoca.org
parents:
diff changeset
3 MAINTAINER Dave Smith <smith@nwoca.org>
b5534ea9a4cb initial tomcat dockerfile
smith@nwoca.org
parents:
diff changeset
4
7
72f33ca6aa5b add admin password and custom CATALINA_OPS
smith@nwoca.org
parents: 5
diff changeset
5 COPY setenv.sh /usr/local/tomcat/bin/
72f33ca6aa5b add admin password and custom CATALINA_OPS
smith@nwoca.org
parents: 5
diff changeset
6 COPY createTomcatAdmin.sh /usr/local/tomcat/bin/
5
9b74645ce4a4 add setenv file
smith@nwoca.org
parents: 4
diff changeset
7
7
72f33ca6aa5b add admin password and custom CATALINA_OPS
smith@nwoca.org
parents: 5
diff changeset
8 RUN chmod +x /usr/local/tomcat/bin/setenv.sh \
72f33ca6aa5b add admin password and custom CATALINA_OPS
smith@nwoca.org
parents: 5
diff changeset
9 /usr/local/tomcat/bin/createTomcatAdmin.sh
5
9b74645ce4a4 add setenv file
smith@nwoca.org
parents: 4
diff changeset
10