docker maven 出错:Failed to execute goal com.spotify:docker-maven-plugin:...: Request error: POST http...

Spring Boot项目构建docker镜像,出错Failed to execute goal com.spotify:docker-maven-plugin:0.4.13:build (default-cli) on project SpringBoot2: Exception caught: Request error: POST https://192.168.99.100:2376/build?t=mytest/SpringBoot2: 500: HTTP 500 Internal Server Error

出现这个错的原因确实出人意料——居然是因为大小写问题...

我是在pom.xml里加入了docker构建用的插件:

      <plugin>
                <groupId>com.spotify</groupId>
                <artifactId>docker-maven-plugin</artifactId>
                <version>0.4.13</version>
                <configuration>
<!--                     <imageName>${docker.image.prefix}/${project.artifactId}</imageName> 这里取得是项目名字,我的项目名字是SpringBoot2,导致失败-->
                    <imageName>mytest/springboottest</imageName>
<!--                     <dockerDirectory>src/main/docker</dockerDirectory> -->
                    <dockerDirectory>./</dockerDirectory>
                    <resources>
                        <resource>
                            <targetPath>/</targetPath>
                            <directory>${project.build.directory}</directory>
                            <include>${project.build.finalName}.jar</include>
                        </resource>
                    </resources>
                </configuration>
            </plugin>

 

构建方式,请参考:http://spring.io/guides/gs/spring-boot-docker/

 

转载于:https://www.cnblogs.com/qlong8807/p/5993808.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值