PrefaceWhen deploying a project, you may need to rely on node.js, Redis, RabbitMQ, MySQL, etc. The function libraries and dependencies required for the deployment of these services are different and may even conflict with each other. This brought great difficulties to the deployment. Docker has cleverly solved these problems. In order to solve the compatibility issues of dependencies, Docker uses two methods:
This article will explain how to use Docker to deploy the projects we usually develop with SpringBoot: DockerfileWhat is a Dockerfile?Dockerfile is a text file used to build an image. The text content contains the instructions and instructions required to build the image. Dockerfile SyntaxWhen building a custom image, you do not need to copy and package each file one by one. We only need to tell Docker the composition of our image, which BaseImages are needed, what files need to be copied, what dependencies need to be installed, and what the startup script is. In the future, Docker will help us build the image. The file that describes the above information is the Dockerfile file. Dockerfile is a text file that contains instructions that describe what operations to perform to build an image. Each instruction forms a layer. Packaging SpringBoot ProjectPreparation Project: Project Port server.port=8080 Create a new index.html in the templates folder <!DOCTYPE html> <html lang="en" xmlns:th="http://www.thymeleaf.org"> <head> <meta charset="UTF-8"> <title>Docker deployment SpringBoot application</title> </head> <body> <h1>Docker deployment of SpringBoot applications</h1> <img src="/static/img/2.jpg" alt="" width="100%"> </body> </html> Define the homepage Controller and jump to the index @Controller public class indexController { @RequestMapping("/") public String index(){ return "index"; } } Preview the effect locally: Package the SpringBoot application into a jar locallyPrepare the maven-compiler-plugin plugin <build> <!--Compiled and packaged file name--> <finalName>app</finalName> <plugins> <plugin> <!--GAV coordinates (G organization id, A project id, V version number)--> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <!--Configuration: Generally speaking, target and source are consistent, but sometimes in order to allow the program to run in other versions of JDK (for lower version target JDK, the source code cannot use syntax that is not supported by the lower version JDK), there will be a situation where target is different from source --> <configuration> <!--JDK version used by the source code--> <source>1.8</source> <!-- The compiled version of the target class file to be generated--> <target>1.8</target> <!-- Character set encoding to prevent Chinese garbled characters --> <encoding>UTF-8</encoding> </configuration> </plugin> </plugins> </build>
Then execute clean, and finally execute package to package the project The BUILD SUCCESS message indicates that the package was successfully completed. After the packaging is successful, the target folder will appear, and the jar package just packaged will be in the directory Prepare jar package and Dockerfile Copy the jar to the desktop or a custom location, and create and write the Dockerfile file locally ( Writing a DockerfileDockerfile instructions FROM java:8-alpine COPY ./app.jar /tmp/app.jar ENTRYPOINT java -jar /tmp/app.jar Dockerfile Description FROM java:8-alpine: Build an image based on java8. By default, building a java image requires installing and configuring environment variables. The java:8-alpine image has already completed all the previous steps for us. COPY ./app.jar /tmp/app.jar Copy the jar package ENTRYPOINT java -jar /tmp/app.jar Entry Command Use the tool to upload the jar and Dockerfile to the serverThe upload location depends on the individual. I store it in: /tmp/docker cd tmp mkdir docker Select Upload File Upload to the Build the image Enter the directory where you uploaded the file: Enter the command to build the image docker build -t test:1.0 .
Command Explanation:
You can see that when building the image, it will be executed in three steps according to the three commands we wrote in Dockerfile View MirrorView the image command in Docker: docker images You can see our custom image test Create and run the containerRun the Docker image command: docker run --name springboot -p 8080:8080 -d test:1.0 Command Explanation:
The container was created and run successfully! View the running imageRunning image command docker ps Browser accesses the server's port 8080 Mobile access: View logsView container log command docker logs -f springboot illustrate: View container logs but they are not updated in real time. You need to run again if you want to view new logs docker logs + container name Real-time update log docker logs -f + container name The Docker deployment SpringBoot application tutorial is over! This is the end of this article about Docker deployment of SpringBoot applications. For more relevant content about Docker deployment of SpringBoot applications, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Discussion on default margin and padding values of common elements
>>: Pure CSS to achieve automatic rotation effect of carousel banner
Table of contents 1. System environment 2. Operat...
Static files Nginx is known for its high performa...
Some common statements for viewing transactions a...
Table of contents need: Main points: According to...
In summary: 1. Consider performance when designin...
Table of contents 1. Introduction 2. Main text 2....
Sort Tool The Linux sort command is used to sort ...
The a tag is mainly used to implement page jump, ...
sed is a character stream editor under Unix, that...
Copy code The code is as follows: li {width:300px...
1. Introduction Git is a free, open source distri...
I saw in the LOFTER competition that it was mentio...
Use CSS to modify scroll bars 1. Overflow setting...
Table of contents View Disk Usage Disk Cleanup (D...
When one needs to edit or modify the website desi...