Preface Project requirements: Install the Docker plugin in Dockeridea and configure Docker to create a Dockerfile for a SpringBoot project 1. Download, install, and configure Docker Download address: Download Docker from the official website Install Just keep going to the next step Configuration path: Settings-General Check Set up a mirror to increase the speed of downloading the mirror Test whether the installation is successful C:\Users\msi>docker -v Docker version 19.03.12, build 48a66213fe C:\Users\msi>docker run hello-world Hello from Docker! This message shows that your installation appears to be working correctly. To generate this message, Docker took the following steps: 1. The Docker client contacted the Docker daemon. 2. The Docker daemon pulled the "hello-world" image from the Docker Hub. (amd64) 3. The Docker daemon creates a new container from that image which runs the executable that produces the output you are currently reading. 4. The Docker daemon streamed that output to the Docker client, which sent it to your terminal. To try something more ambitious, you can run an Ubuntu container with: $ docker run -it ubuntu bash Share images, automate workflows, and more with a free Docker ID: https://hub.docker.com/ For more examples and ideas, visit: https://docs.docker.com/get-started/ 2. Idea Install Docker plugin 1. Install the Docker plug-in in idea: file--Plugins--Marketplace Search Docker Installation 2. Configure Docker service file – Search for docker – Select Docker – Add a Docker on the right 3. Create a SpringBoot project, modify the pom.xmlspringMVC project, and access localhost:8080/hello to display the hello string @RequestMapping("/hello") @ResponseBody public String hello () { return "hello"; } 1. Configure the pom.xml file <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <executions> <execution> <goals> <goal>repackage</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>com.spotify</groupId> <artifactId>docker-maven-plugin</artifactId> <version>1.2.1</version> <executions> <execution> <id>build-image</id> <phase>package</phase> <goals> <goal>build</goal> </goals> </execution> </executions> <configuration> <imageName>${project.artifactId}</imageName> <imageTags> <imageTag>latest</imageTag> </imageTags> <dockerDirectory>${project.basedir}</dockerDirectory> <dockerHost>http://localhost:2375</dockerHost> <resources> <resource> <targetPath>/</targetPath> <directory>${project.build.directory}</directory> <include>${project.build.finalName}</include> </resource> </resources> </configuration> </plugin> </plugins> </build> 2. Create a Docker file Create a docker folder under the main folder and create a Dockerfile file in it. xxxxx.jar is copied in after being packaged using Maven. Dockerfile file content: # From java image, version : 8 FROM java:8 # Mount the app directory VOLUME /app # COPY or ADD to image COPY demo-0.0.1-SNAPSHOT.jar app.jar RUN bash -c "touch /app.jar" EXPOSE 8080 ENTRYPOINT ["java", "-jar", "app.jar"] Maven packages and copies the jar package in its target directory into the docker directory. Configure Dockerfile configuration run Run successfully test Use docker to check whether the container is started: Test whether the project is started: Summarize I learned about Docker containers today. I learned the basic commands, but I still don’t understand how to use them. Take this opportunity to spend time learning. At present, I just know how to use it, and I will add a detailed description of the steps later. This is the end of this article about using Docker to deploy SpringBoot projects in Idea. For more information about Docker deployment of SpringBoot projects, 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:
|
<<: Typescript+react to achieve simple drag and drop effects on mobile and PC
>>: Summary of several situations in which MySQL indexes fail
In the previous article, we introduced how to use...
Introduction Based on docker container and docker...
This article uses an example to illustrate the me...
What is ELK? ELK is a complete set of log collect...
Copy code The code is as follows: <html> &l...
Preface Recently, I accidentally discovered MySQL...
Data URI Data URI is a scheme defined by RFC 2397...
This article shares the installation and configur...
This article lists the most commonly used image c...
Rendering Code - Take the blue and yellow rings a...
Table of contents background How to determine whe...
This article shares with you the graphic tutorial...
Table of contents 1. Download MySQL 2. Unzip the ...
1. Slow query log 1.1 MySQL log types Logs are us...
In the project, you will encounter custom public ...