Detailed tutorial on how to publish springboot projects through docker plug-in in IDEA

Detailed tutorial on how to publish springboot projects through docker plug-in in IDEA

1. Write the Dockerfile

(1) Right-click the project name, create a new text file, and change the name to Dockerfile without the suffix. Place it in the project root directory.

(2) Fill in the Dockerfile content

FROM openjdk:8
 
VOLUME /tmp
ADD target/*.jar app.jar
 
ENTRYPOINT ["java","-jar","/app.jar"]

FROM openjdk:8 // indicates that the basic environment is jdk8
ADD target/*.jar app.jar //Copy the files matching *.jar in the target folder in the same directory to app.jar and put them in the image

ENTRYPOINT ["java","-jar","/app.jar"] // Execute the jar command to run the project

2. Edit project configuration through docker plug-in

(1) Find the configuration page

Run -> Edit Configuration

Click the + sign to add a new configuration and select Dockerfile for Docker

(2) Edit configuration

3. Release the image and generate the container

(1) Click the Servers tab

<1> Shortcut key alt+8 (8 on the main keyboard)

<2> Top menu -> View -> Tool Window -> Servers

<3> Place the mouse on the icon in the lower left corner for a while

(2) Publish via button

Summarize

This is the end of this article about the detailed tutorial on how to publish springboot projects in IDEA through the docker plug-in. For more information about how to publish springboot projects in IDEA, 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:
  • The whole process of IDEA integrating docker to deploy springboot project
  • How to configure docker in IDEA2021.2 to image the springboot project and release it with one click
  • Detailed steps to deploy SpringBoot projects using Docker in Idea
  • Deploy the springboot project to docker based on idea
  • Detailed explanation of the process of deploying SpringBoot project through Docker plug-in in IDEA

<<:  Vue uses plug-ins to cut pictures in proportion

>>:  Causes and solutions for MySQL deadlock

Recommend

My CSS framework - base.css (reset browser default style)

Copy code The code is as follows: @charset "...

CSS3 implements the sample code of NES game console

Achieve resultsImplementation Code html <input...

Detailed process of drawing three-dimensional arrow lines using three.js

Demand: This demand is an urgent need! In a subwa...

Solve the problem of using linuxdeployqt to package Qt programs in Ubuntu

I wrote some Qt interface programs, but found it ...

How to delete a property of an object in JavaScript

1. delete delete is the only real way to remove a...

Additional instructions for using getters and actions in Vuex

Preliminary Notes 1.Differences between Vue2.x an...

Summary of 11 amazing JavaScript code refactoring best practices

Table of contents 1. Extracting functions 2. Merg...

How to use cutecom for serial communication in Ubuntu virtual machine

Using cutecom for serial communication in Ubuntu ...

Summary of tips for setting the maximum number of connections in MySQL

Method 1: Command line modification We only need ...

Tutorial on installing DAMO database on Centos7

1. Preparation After installing the Linux operati...

Detailed explanation of HTML table inline format

Inline format <colgroup>...</colgroup>...

Vue project implements file download progress bar function

There are two common ways to download files in da...