Build and push - ERROR: existing instance for "maven" but no append mode #1742
-
I'm getting
This is an excerpt of the output:
And this is my plugin configuration: <plugin>
<groupId>io.fabric8</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>${maven.docker.version}</version>
<configuration>
<images>
<image>
<name>vaadin/${project.artifactId}</name>
<build>
<from>eclipse-temurin:17-jre</from>
<buildx>
<platforms>
<platform>linux/amd64</platform>
<platform>linux/arm64</platform>
</platforms>
</buildx>
<assembly>
<descriptorRef>artifact</descriptorRef>
</assembly>
<entryPoint>
<shell>java -jar maven/${project.name}-${project.version}.jar</shell>
</entryPoint>
<ports>
<port>8080</port>
</ports>
<tags>
<tag>${project.version}</tag>
<tag>latest</tag>
<tag>ci</tag>
</tags>
</build>
</image>
</images>
</configuration>
</plugin> I feel I'm doing something wrong. Any suggestion? |
Beta Was this translation helpful? Give feedback.
Answered by
rohanKanojia
Jan 31, 2024
Replies: 1 comment 1 reply
-
@heruan : You seem to be using quite old version of docker. Do you see the issue when you upgrade to latest release |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
heruan
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@heruan : You seem to be using quite old version of docker. Do you see the issue when you upgrade to latest release