Spring Spring -boot:build-image给出HTTP 500错误



我试图容器化一个简单的spring引导应用程序与hello world rest服务(从spring初始化站点初始化)。我在本地环境中安装了Docker Desktop for Windows,并启用了Kubernetes。docker版本输出:

Cloud integration: v1.0.23
Version:           20.10.14
API version:       1.41
Go version:        go1.16.15
Git commit:        a224086
Built:             Thu Mar 24 01:53:11 2022
OS/Arch:           windows/amd64
Context:           default
Experimental:      true
Server: Docker Desktop 4.7.1 (77678)
Engine:
Version:          20.10.14
API version:      1.41 (minimum version 1.12)
Go version:       go1.16.15
Git commit:       87a90dc
Built:            Thu Mar 24 01:46:14 2022
OS/Arch:          linux/amd64
Experimental:     false
containerd:
Version:          1.5.11
GitCommit:        3df54a852345ae127d1fa3092b95168e4a88e2f8
runc:
Version:          1.0.3
GitCommit:        v1.0.3-0-gf46b6ba
docker-init:
Version:          0.19.0
GitCommit:        de40ad0

Pom.xml内容:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.5.13</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
<artifactId>rest-service-complete</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>rest-service-complete</name>
<description>Demo project for Spring Boot</description>
<properties>
<java.version>1.8</java.version>
</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>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${project.parent.version}</version>
</plugin>
</plugins>
</build>
</project>

当我执行命令构建/运行映像时./mvnw spring-boot:build-image -Dspring-boot.build-image.imageName=springio/rest-complete-service我得到以下错误:[ERROR] Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:2.5.13:build-image (default-cli) on project rest-service-complete: Execution default-cli of goal org.springframework.boot:spring-boot-maven-plugin:2.5.13:build-image failed: Docker API call to 'localhost/v1.24/images/create?fromImage=docker.io%2Fpaketobuildpacks%2Fbuilder%3Abase' failed with status code 500 "Internal Server Error" and message "received unexpected HTTP status: 500 Server Error" -> [Help 1]

如果你能想出办法解决这个问题,我将不胜感激。

我发现了一个类似于你的帖子,正如他们在那里所说,这实际上是一个docker守护进程错误,所以你需要检查docker守护进程日志以获取任何相关信息。

最新更新