Created
July 27, 2017 09:49
-
-
Save lobster1234/af2dc4eef3ee75117043d950c2c1ec2b to your computer and use it in GitHub Desktop.
Dockerfile to run tomcat in an ubuntu container
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:latest | |
RUN apt-get -y update && apt-get -y upgrade | |
RUN apt-get -y install openjdk-8-jdk wget | |
RUN mkdir /usr/local/tomcat | |
RUN wget http://www-us.apache.org/dist/tomcat/tomcat-8/v8.5.16/bin/apache-tomcat-8.5.16.tar.gz -O /tmp/tomcat.tar.gz | |
RUN cd /tmp && tar xvfz tomcat.tar.gz | |
RUN cp -Rv /tmp/apache-tomcat-8.5.16/* /usr/local/tomcat/ | |
EXPOSE 8080 | |
CMD /usr/local/tomcat/bin/catalina.sh run |
Latest Tomcat version -> http://apache.stu.edu.tw/tomcat/tomcat-8/v8.5.69/bin/apache-tomcat-8.5.69.tar.gz
Latest Tomcat version -> https://downloads.apache.org/tomcat/tomcat-8/v8.5.70/bin/apache-tomcat-8.5.70.tar.gz
Great Dockerfile. For some reason, this is not working with Tomcat 10.0.14 !!
not working with tom-cat 9.0
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
I fallowed the same process, but the container is not starting..
But the created container is showing in the list of stopped containers