Maven dockerfile插件无法标记图像

问题描述 投票:1回答:1

我正在尝试将maven dockerfile插件与我的项目集成。我的maven项目下有多个模块。我修改了我要构建的模块的pom.xml,并标记了图像,如下所示。运行mvn dockerfile:build命令构建一个在目标文件夹下创建一个docker-info.jar。我不确定图像的构建位置,当我尝试运行mvn dockerfile:tag命令时,我看到下面的错误。

无法在项目drs-web上执行目标com.spotify:dockerfile-maven-plugin:1.4.4:tag(default-cli):目标com.spotify的参数'repository':dockerfile-maven-plugin:1.4.4 :标签丢失或无效

Pom.hml:

    <plugin>
                <groupId>com.spotify</groupId>
                <artifactId>dockerfile-maven-plugin</artifactId>
                <version>${docker.maven.plugin.version}</version>
                    <executions>
                        <execution>
                            <id>build</id>
                            <goals>
                                <goal>build</goal>
                            </goals>
                            <configuration>
                                <buildArgs>
                                    <WAR_FILE>${project.build.finalName}.war</WAR_FILE>
                                </buildArgs>
                            </configuration>
                        </execution>
                        <execution>
                            <id>tag</id>
                            <goals>
                                <goal>tag</goal>
                            </goals>
                            <configuration>
                                <repository>XXX/XXX-api</repository>
                                <tag>${project.version}</tag>
                            </configuration>
                        </execution>
                    </executions>
            </plugin>

Dockerfile:

FROM tomcat:9.0.10-jre8-slim
ENV CATALINA_HOME /usr/local/tomcat
MAINTAINER XXX
EXPOSE 8080
ADD target/${WAR_FILE} ${CATALINA_HOME}/webapps/XXX-api.war
docker docker-compose dockerfile docker-maven-plugin
1个回答
1
投票

要修复错误,您应该在pom.xml的两个部分中使用相同的参数。您没有为构建目标定义存储库的名称:

<configuration>
    <repository>XXX/XXX-api</repository>
</configuration>

docker-info.jar在Target目录中创建的事实很可能意味着docker镜像的创建成功完成。

图像应放在Docker注册表中,名称为“XXX / XXX-api”,您可以使用以下命令从控制台进行检查:

docker image ls

附:您可以通过将以下参数添加到dockerfile-maven-plugin的配置部分来避免生成docker-info.jar:

<configuration>
    <skipDockerInfo>true</skipDockerInfo>
</configuration>
© www.soinside.com 2019 - 2024. All rights reserved.