温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

怎么把spring boot应用发布到Harbor

发布时间:2021-02-02 13:58:00 来源:亿速云 阅读:328 作者:小新 栏目:编程语言

小编给大家分享一下怎么把spring boot应用发布到Harbor,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!

settings.xml配置

<server>    <id>docker-hub</id>    <username>admin</username>    <password>Harbor12345</password>   </server>

pom.xml配置

</parent>     <groupId>com.topcheer</groupId>     <artifactId>docker</artifactId>     <version>0.0.1-SNAPSHOT</version>     <name>docker</name>     <description>Demo project for Spring Boot</description>   <properties>     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>     <java.version>1.8</java.version>     <docker.image.prefix>topcheer</docker.image.prefix>     <docker.repostory>192.168.180.105:1180</docker.repostory>   </properties>   <dependencies>        <dependency>       <groupId>org.springframework.boot</groupId>       <artifactId>spring-boot-starter-web</artifactId>     </dependency>     <dependency>       <groupId>org.springframework.boot</groupId>       <artifactId>spring-boot-starter-test</artifactId>       <scope>test</scope>     </dependency>   </dependencies>      <repositories>     <repository>       <id>spring-milestones</id>       <name>Spring Milestones</name>       <url>https://repo.spring.io/milestone</url>     </repository>   </repositories>       <build>     <finalName>docker</finalName>     <plugins>       <plugin>     <groupId>org.springframework.boot</groupId>     <artifactId>spring-boot-maven-plugin</artifactId>       <!--加入下面两项配置-->       <executions>        <execution>         <goals>          <goal>repackage</goal>         </goals>        </execution>       </executions>       <configuration>          <includeSystemScope>true</includeSystemScope>       </configuration>    </plugin>       <plugin>         <groupId>com.spotify</groupId>         <artifactId>docker-maven-plugin</artifactId>         <version>1.2.0</version>         <executions>           <execution>             <phase>package</phase>             <goals>               <goal>build</goal>             </goals>           </execution>           <execution>             <id>tag-image</id>             <phase>package</phase>             <goals>               <goal>tag</goal>             </goals>             <configuration>               <image>${docker.repostory}/${docker.image.prefix}/${project.artifactId}:1.0.1</image>               <newName>${docker.repostory}/${docker.image.prefix}/${project.artifactId}:1.0.1</newName>             </configuration>           </execution>           <execution>             <id>push-image</id>             <phase>deploy</phase>             <goals>               <goal>push</goal>             </goals>             <configuration>               <imageName>${docker.repostory}/${docker.image.prefix}/${project.artifactId}:1.0.1</imageName>             </configuration>           </execution>         </executions>         <configuration>           <serverId>docker-hub</serverId>           <registryUrl>${docker.repostory}</registryUrl>           <dockerHost>http://192.168.180.105:2375</dockerHost>           <forceTags>true</forceTags>           <pushImage>true</pushImage>           <dockerDirectory>src/main/docker</dockerDirectory>           <imageName>${docker.repostory}/${docker.image.prefix}/${project.artifactId}:1.0.1</imageName>           <imageTags>             <imageTag>1.0.2</imageTag>           </imageTags>           <resources>             <rescource>               <targetPath></targetPath>               <directory>${project.build.directory}</directory>               <include>${project.build.finalName}.jar</include>             </rescource>           </resources>           <includeSystemScope>true</includeSystemScope>         </configuration>       </plugin>     </plugins>   </build>

运行命令

clean package docker:build -DpushImage -Dmaven.test.skip=true

怎么把spring boot应用发布到Harbor

看完了这篇文章,相信你对“怎么把spring boot应用发布到Harbor”有了一定的了解,如果想了解更多相关知识,欢迎关注亿速云行业资讯频道,感谢各位的阅读!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI