How to run the springboot project in docker

How to run the springboot project in docker

1. Click Terminal below in IDEA and enter mvn clean install

When the following figure appears, it indicates success (the premise is that Maven must be installed locally and the Maven environment variables must be configured)

The packaged jar is in the target directory

2. Then create a new Dockerfile file with the following content

3. Build the image: Place the Dockerfile and project jar package in the same directory on the server, and then enter the directory

Enter: docker build -t app . (note there is a dot at the end, app is the custom image name) to build the image

Check if the image exists: docker images

4. Run the image just created: docker run -d -p 8888:8081 --name app app

illustrate:

-d runs the container in the background;

--name specifies the container name;

-p specifies the port where the service runs (the first one is the host mapping port number, and the second one is the project port number)

Open the browser IP:8888 to view

5. View container logs: docker logs -f -t --tail 500 app

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Detailed tutorial on running multiple Springboot with Docker
  • Detailed explanation of the infinite restart problem when running the SpringBoot project docker environment
  • Implementation of running springboot project with Docker

<<:  Detailed explanation of mysql transaction management operations

>>:  JavaScript Objects (details)

Recommend

A brief analysis of MySQL cardinality statistics

1. What is the cardinality? Cardinality refers to...

HTML table tag tutorial (31): cell width and height attributes WIDTH, HEIGHT

By default, the width and height of the cell are ...

Docker FAQ

Docker only maps ports to IPv6 but not to IPv4 St...

vue-router history mode server-side configuration process record

history route History mode refers to the mode of ...

HTML commonly used meta encyclopedia (recommended)

The Meta tag is an auxiliary tag in the head area...

Summary of practical methods for JS beginners to process arrays

join() method: connects all elements in an array ...

Detailed explanation of the usage of scoped slots in Vue.js slots

Table of contents No slots Vue2.x Slots With slot...

A comprehensive understanding of Vue.js functional components

Table of contents Preface React Functional Compon...

MySQL dual-master (master-master) architecture configuration solution

In enterprises, database high availability has al...

Example of using CSS filter to write mouse over effect

Use CSS filter to write mouse over effect <div...

How to generate a unique server-id in MySQL

Preface We all know that MySQL uses server-id to ...

MySQL multi-instance configuration application scenario

Table of contents MySQL multiple instances Multi-...

How to start and restart nginx in Linux

Nginx (engine x) is a high-performance HTTP and r...