Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Info
title목차

Table of Contents


Docker Hub에서 이미지 확인

Info


Info

https://hub.docker.com/search?q=tomcat&type=image

Image Added

Tomcat 실행

Info
  • 특정포트로 실행
Code Block
docker run -dit -p 80:8080 tomcat:8.0
  • Host Volume연결 실행
Code Block
docker run -dit -p 80:8080 -v /root/tomcat-docs:/usr/local/tomcat/webapps/ROOT tomcat:8.0


...