How to deploy SpringBoot project using Dockerfile

How to deploy SpringBoot project using Dockerfile

1. Create a SpringBooot project and package it into a jar package

2. Create a folder in Linux to do docker testing

[root@izwz90lvzs7171wgdhul8az ~]# mkdir /root/docker_test

3. Upload the jar package to Linux

Create a folder to store the jar package

[root@izwz90lvzs7171wgdhul8az docker_test]# mkdir /root/docker_test/jar

Then use XShell to upload the jar package to the above folder

4. Write the Dockerfile

# Create a new image based on the java image FROM java:8
# Author: MAINTAINER Howinfun
# Add the jar package to the container and rename it to app.jar
ADD jar/app.jar /root/docker_test/app.jar
# Run jar package ENTRYPOINT ["nohup","java","-jar","/root/docker_test/app.jar","&"]

Note: The ADD and COPY instructions are used in the same way, the only difference is that ADD supports extracting and decompressing archive files (tar, gzip, bzip2, etc.). It is also important to note that the directory that the COPY instruction needs to copy must be placed in the same directory as the Dockerfile file.

5. Make a mirror

[root@izwz90lvzs7171wgdhul8az docker_test]# docker build -t sbdemo .

Command parameters:

-t: Specify the new image name
.: indicates that the Dockfile is in the current path

If our Dockerfile file path is not in this directory, or has another file name, we can give the path of the Dockerfile file separately through the -f option

[root@izwz90lvzs7171wgdhul8az docker_test]# docker build -t sbdemo -f /root/docker_test/Dockerfile /root/docker_test/

Command parameters:

-f: The first parameter is the path of the Dockerfile and the second parameter is the folder where the Dockerfile is located. After the creation is complete, use the docker images command to view the image we created:

[root@izwz90lvzs7171wgdhul8az docker_test]# docker images | grep sbdemo
sbdemo latest 7efac46ef997 4 hours ago 686MB

6. Start the container

[root@izwz90lvzs7171wgdhul8az docker_test]# docker run -d -p 8888:8888 --name mysbdemo sbdemo:latest

Command parameters:

-d: Run in the background
-p: Publicly specify the port number
--name: Give the container a name

After startup, you can view the running container through docker ps:

[root@izwz90lvzs7171wgdhul8az docker_test]# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
5096c8c7b36f sbdemo "nohup java -jar /ro?? 4 seconds ago Up 2 seconds 0.0.0.0:8888->8888/tcp mysbdemo

7. View container startup log

We can view the logs of the specified container through docker logs:

[root@izwz90lvzs7171wgdhul8az docker_test]# docker logs mysbdemo

 . ____ _ __ _ _
 /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/ ___)| |_)| | | | | || (_| | ) ) ) )
 ' |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|===============|___/=/_/_/_/
 :: Spring Boot :: (v2.1.6.RELEASE)

2019-10-11 02:10:46.264 INFO 1 --- [ main] com.hyf.DatabaseApplication : Starting DatabaseApplication v0.0.1-SNAPSHOT on 6d85ac5d8751 with PID 1 (/root/docker_test/app.jar started by root in /)
2019-10-11 02:10:46.267 DEBUG 1 --- [ main] com.hyf.DatabaseApplication : Running with Spring Boot v2.1.6.RELEASE, Spring v5.1.8.RELEASE
2019-10-11 02:10:46.268 INFO 1 --- [ main] com.hyf.DatabaseApplication : No active profile set, falling back to default profiles: default
2019-10-11 02:10:49.139 WARN 1 --- [ main] omsmapper.ClassPathMapperScanner : Skipping MapperFactoryBean with name 'bookMapper' and 'com.hyf.mapper.BookMapper' mapperInterface. Bean already defined with the same name!
2019-10-11 02:10:49.139 WARN 1 --- [ main] omsmapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.hyf]' package. Please check your configuration.
2019-10-11 02:10:49.246 INFO 1 --- [ main] .sdrcRepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode!
2019-10-11 02:10:49.257 INFO 1 --- [ main] .sdrcRepositoryConfigurationDelegate : Bootstrapping Spring Data repositories in DEFAULT mode.
2019-10-11 02:10:49.328 INFO 1 --- [ main] .sdrcRepositoryConfigurationDelegate : Finished Spring Data repository scanning in 39ms. Found 0 repository interfaces.
2019-10-11 02:10:50.345 INFO 1 --- [ main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$2c6b335] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2019-10-11 02:10:51.255 INFO 1 --- [ main] osbwembedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8888 (http)
2019-10-11 02:10:51.359 INFO 1 --- [ main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2019-10-11 02:10:51.359 INFO 1 --- [ main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.21]
2019-10-11 02:10:51.778 INFO 1 --- [ main] oaccC[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2019-10-11 02:10:51.779 INFO 1 --- [ main] osweb.context.ContextLoader : Root WebApplicationContext: initialization completed in 5104 ms
2019-10-11 02:10:54.164 INFO 1 --- [ main] ossconcurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor'
2019-10-11 02:10:56.081 INFO 1 --- [ main] osbwembedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8888 (http) with context path ''
2019-10-11 02:10:56.090 INFO 1 --- [ main] com.hyf.DatabaseApplication : Started DatabaseApplication in 11.49 seconds (JVM running for 12.624)

8. Access interface

After the container is started, we try to use postman or other http tools to access the application interface deployed in the container.

Summarize

The above is the method of using Dockerfile to deploy SpringBoot project introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • Detailed explanation of CMD and ENTRYPOINT commands in Dockerfile
  • How to write the best Dockerfile
  • Detailed explanation of COPY and ADD commands in Dockerfile
  • A detailed introduction to the Dockerfile image building file and related commands in Docker
  • Detailed explanation of using Dockerfile to build MySQL image and implement data initialization and permission setting
  • Detailed explanation of the specific use of the ENV instruction in Dockerfile
  • Dockerfile usage examples
  • Dockerfile to create the official Tomcat image and detailed explanation of image usage
  • Summary of common commands in Dockerfile
  • How to use Dockerfile to create a mirror of the Java runtime environment
  • How to create your own image using Dockerfile
  • Introduction to Dockerfile instructions ADD and COPY
  • Detailed explanation of multi-stage (multi-stage build) in Dockerfile
  • Docker Basics: Detailed Explanation of Dockerfile Commands
  • How to deploy nodejs service using Dockerfile
  • Dockerfile instructions explained
  • A brief introduction to the Dockerfile instruction VOLUME
  • Dockerfile simple introduction

<<:  MySQL DeadLock troubleshooting full process record

>>:  Teach you how to build a react+antd project from scratch

Recommend

Detailed explanation of Bootstrap grid vertical and horizontal alignment

Table of contents 1. Bootstrap Grid Layout 2. Ver...

Ubuntu 20.04 Chinese input method installation steps

This article installs Google Input Method. In fac...

Example of implementing a virtual list in WeChat Mini Program

Table of contents Preface analyze Initial Renderi...

A Brief Analysis of MySQL PHP Syntax

Let's first look at the basic syntax of the c...

JavaScript+HTML to implement student information management system

Table of contents 1. Introduction 2. Rendering 3....

Simple understanding and examples of MySQL index pushdown (ICP)

Preface Index Condition Pushdown (ICP) is a new f...

Detailed example of locating and optimizing slow query sql in MySQL

Table of contents 1. How to locate and optimize s...

How to restore single table data using MySQL full database backup data

Preface When backing up the database, a full data...

Implementation of Docker deployment of web projects

The previous article has installed the docker ser...

Summary of several implementations of returning to the top in HTML pages

Recently, I need to make a back-to-top button whe...

How to use provide to implement state management in Vue3

Table of contents Preface How to implement Vuex f...

17 404 Pages You'll Want to Experience

How can we say that we should avoid 404? The reas...

HTML+CSS to create heartbeat special effects

Today we are going to create a simple heartbeat e...

What is Software 404 and 404 Error and what is the difference between them

First of all, what is 404 and soft 404? 404: Simpl...

Vue3.0 implements the magnifying glass effect case study

The effect to be achieved is: fixed zoom in twice...