Docker Run Tomcat
1. 이미지 받기
$> docker pull tomcat:82. 이미지 확인
$> docker images3. 실행 & 확인
$> docker run -dit -p 8080:8080 tomcat:8$> docker ps
4. 테스트
index.jsp 파일이 아래와 같이 있다고 가정하고<% out.print("Hello World"); %>
도커 tomcat에 복사
$> docker cp ./index.jsp {running_image_name}:/usr/local/tomcat/webapps/ROOT
$> curl http://localhost:8080/index.jsp
5. Image 생성
$> docker commit -m "Initial commit" -a "tomcat8_test_image" tomcat8_1 tomcat8:0.1$> docker images
참고)
console 접속하고 싶을때
$> docker exec -it {running_image_name | id} /bin/bash
댓글
댓글 쓰기