1. Configure Docker remote connection portLocate and edit the docker.service file on your server.
As shown in the figure below, add:
2. Restart Docker
3. Server open portsI use Alibaba Cloud Server and open ports in the configuration rules of the security group. 4. Test whether the remote connection is normal
5. Download the Docker plugin from IDEA6. Use the plugin to connect to the Docker container of the Alibaba Cloud serverAfter the connection is successful, you can see the image and container in Docker 7. Create a new Dockerfile file under the projectI put it in the project root directory, at the same level as pom.xml. #This is the base image FROM java:8 VOLUME /tmp #Copy the jar package to the image and change the name to app.jar ADD ./target/yun-tool-1.0.jar app.jar #Run the command when the container starts to start our project (this is actually a Linux command) ENTRYPOINT ["java","-Djava.security.egd=file:/dev/./urandom","-jar","/app.jar"] 8. Add a Docker configuration9. Use Maven to package the project into a jar package10. Run the build image11. Browser accesshttp://IP address:port This is the end of this article about deploying SpringBoot projects in IDEA through the Docker plug-in. For more information about deploying SpringBoot projects with Docker, 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:
|
<<: Detailed introduction to CSS priority knowledge
>>: Detailed explanation of transactions and indexes in MySQL database
IIS7 Download the HTTP Rewrite module from Micros...
Table of contents Short Introduction 1. Check the...
This article example shares the specific code of ...
Table of contents 1. Installation 2. There is no ...
Table of contents 1. Docker configuration 2. Crea...
Preface Previously, I talked about the problem of...
Table of contents Preface 1. Paste Events and Cli...
The sudo command allows a trusted user to run a p...
This article describes MySQL multi-table query wi...
When using Flex layout, you will find that when a...
When we add an svg image to display, react prompt...
In this system, the # sign represents the root us...
Copy code The code is as follows: <html> &l...
background I originally wanted to download a 6.7 ...
This article example shares the specific code of ...