Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 |
Tags
- 오징어게임3
- 마스크
- 로드밸런싱
- 창문형 에어컨
- ubuntu-server
- 시간의 심장
- 공기청정기
- PM 2.5
- 클러스터링
- 포켓몬고 플러스
- 기아타스만
- 포켓몬 고
- ai 창작 소설
- java
- aws
- 미세먼지
- Linux
- 크롬
- 기아 K4
- 코로나
- tomcat
- 대체 역사 소설
- 기아 타스만
- sf
- lb
- IOS
- Docker
- 초미세먼지
- 포켓몬고
- OSX
Archives
- Today
- Total
살며사랑하며
docker centos7 tomcat8 본문
#BUILD CMD
docker build --tag centos-tomcat:0.21 .
#RUN CMD
docker run -dit --name=centostomcat8 -p 8080:8080 centos-tomcat:0.21 /bin/sh
#Dockerfile
FROM centos:centos7
#Install WGET
RUN yum install -y wget tar unzip
# Download JDK
RUN yum -y install java-1.8.0-openjdk
# Download Apache Tomcat 8
RUN cd /tmp;wget http://mirror.apache-kr.org/tomcat/tomcat-8/v8.5.16/bin/apache-tomcat-8.5.16.zip
# untar and move to proper location
RUN cd /tmp;unzip /tmp/apache-tomcat-8.5.16.zip
RUN cd /tmp;mv apache-tomcat-8.5.16 /opt/tomcat8
RUN chmod -R 755 /opt/tomcat8
#ENV JAVA_HOME /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.141-1.b16.el7_3.x86_64
EXPOSE 8080
COPY tomcat-conf/tomcat-users.xml /opt/tomcat8/conf/
COPY tomcat-conf/context.xml /opt/tomcat8/webapps/manager/META-INF/
RUN rm -rf /opt/tomcat8/webapps/host-manager /opt/tomcat8/webapps/examples /opt/tomcat8/webapps/docs
CMD /opt/tomcat8/bin/catalina.sh run
728x90