Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use maven to build docker Image in springboot

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

This article shows you how to use maven to build docker images in springboot. The content is concise and easy to understand, which will definitely brighten your eyes. I hope you can get something through the detailed introduction of this article.

First of all, register Aliyun image warehouse, build a new warehouse, and get the public network address of the warehouse.

Registry.cn-shanghai.aliyuncs.com/smartlife-docker/deploy

Here, it should be noted that the image warehouse has a password and needs to be reset on the home page. The page shows that you can use the login password, but it is more reliable to reset it once in practice.

The following are local operations.

First configure the setting.xml of maven

Add the following

Docker a@a.com 123123 a@a.com

Next, add dockerfile to the program to build a docker image.

# Version 0.0.1FROM java:8VOLUME / data/deploy/tmpADD @ project.build.finalName@.@project.packaging@ app.jarRUN sh-c 'touch / app.jar'EXPOSE 7074ENTRYPOINT ["java", "- Djava.security.egd=file:/dev/./urandom", "- jar", "/ app.jar"]

The dockerfile file is located in

/ src/main/docker/

Modify the pom file

Image name Ali Cloud Repository address Namespace

Add in the build section

Docker-maven-plugin

Plug-in

Com.spotify docker-maven-plugin 0.4.13 build-image package build False docker-aliyun ${docker.repostory} / ${docker.registry.name} / ${project.name} true Target/docker ${docker.repostory} / ${docker.registry.name} / ${project.name}: ${project.version} http://192.168.125.245:2375 / ${project.build.directory} ${project.build.finalName} .jar

Add resources node under build node

Src/main/resources false src/main/docker true * * / Dockerfile.. / docker the above is how to use maven to build docker images in springboot. Have you learned any knowledge or skills? If you want to learn more skills or enrich your knowledge reserve, you are welcome to follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report