How to solve maven docker error problem

藏色散人
Release: 2022-01-12 17:14:38
Original
3157 people have browsed it

Solutions to maven docker errors: 1. Modify the maven project to lowercase; 2. Restart the docker service; 3. Modify the maven account configuration information.

How to solve maven docker error problem

The operating environment of this article: centos7 system, docker-maven-plugin version 0.4.11, Dell G3 computer.

How to solve the maven docker error problem?

maven docker plugin FAQ solutions:

1. The maven project must use lowercase, otherwise there will always be 500 errors

500: HTTP 500InternalServerError
Copy after login

2. The number of docker server connections exceeds

Failed to execute goal com.spotify:docker-maven-plugin:0.4.11:build (default-cli) on project activityservice:Exception caught: java.util.concurrent.ExecutionException: com.spotify.docker.client.shaded.javax.ws.rs.ProcessingException: java.io.IOException:No such file or directory
Copy after login

Solution:

The simplest method is to restart the docker service

systemctl restart docker
Copy after login

3. maven account configuration Question

<plugin>
<groupId>com.spotify</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>0.4.11</version>
<configuration>
<imageName>XXXXXXXXXX/activitycenter/${project.artifactId}</imageName>
<imageTags>activitycenter-${project.version}</imageTags>
<dockerDirectory>src/main/docker</dockerDirectory>
<serverId>docker-image</serverId>
<useConfigFile>true</useConfigFile>
<resources>
<resource>
<targetPath>/</targetPath>
<directory>${project.build.directory}</directory>
<include>${project.build.finalName}.jar</include>
</resource>
</resources>
</configuration>
</plugin>
Copy after login

serverId docker-image configuration information account information:

<server>
<id>docker-image</id>
<username>admin</username>
<password>XXXXX</password>
<configuration>
<email>XXXXXX@XXXXXX.com</email>
</configuration>
</server>
Copy after login

Pay attention to the email configuration

Recommended learning: "docker tutorial"

The above is the detailed content of How to solve maven docker error problem. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template