The previous article has installed the docker service. Now let’s continue to introduce how to deploy a web project. 1: Create a directory dock at random and prepare the following files: 2. Write Dockerfile, which can quickly build docker images vi Dockerfile Add the following configuration FROM centos MAINTAINER this is dock image <jsh> ADD jdk1.8.0_191 /usr/local/java ENV JAVA_HOME /usr/local/java ENV JAVA_BIN /usr/local/java/bin ENV JRE_HOME /usr/local/java/jre ENV PATH $PATH:/usr/local/java/bin:/usr/local/java/jre/bin ENV CLASSPATH /usr/local/java/jre/bin:/usr/local/java/lib:/usr/local/java/jre/lib/charsets.jar ADD apache-tomcat-8.5.40 /usr/local/tomcat8 ENTRYPOINT ["/usr/local/tomcat8/bin/catalina.sh","run"] ADD ./manager.war /usr/local/tomcat8/webapps EXPOSE 8080 explain: 3. Build an Image Command: docker build -t dock . (space after dock.) to complete the build automatically. dock identifies the image name 4. Run the container Command: View all running container commands: 5. Test deployment results ip:8060 If the tomcat page appears, it means that the container has been started successfully. This is the end of this article about the implementation of Docker deployment of web projects. For more relevant content about Docker deployment of web projects, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Detailed explanation of axios encapsulation and API interface management in React project
>>: What is the relationship between Mapper sql statement fields and entity class attribute names
Table of contents 1. Use the "rpm -ivh insta...
The vue part is as follows: <template> <...
For a long time, website development was hampered...
Example source code: https://codepen.io/shadeed/p...
When you send a network request, the following sa...
Table of contents 1. Declare and initialize array...
Solution: Bind the click event to the audio compo...
Preface This article only focuses on what Nginx c...
This article example shares the specific code of ...
mysql-5.7.17.msi installation, follow the screens...
Chinese Tutorial https://www.ncnynl.com/category/...
A while ago, I wrote a blog post titled "Can...
I'll record the problems I encountered during...
background Today, I was browsing CodePen and saw ...
Web page encoding is translated into English as we...