When using the docker-maven-plugin plug-in, Maven cannot pull the corresponding jar package. The following problems occur: Maven version: Mirror repository configuration: <mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <mirrorOf>central</mirrorOf> </mirror> Modify the docker-maven-plugin plugin version to: 0.4.13 and it will work normally <build> <plugins> <plugin> <groupId>com.spotify</groupId> <artifactId>docker-maven-plugin</artifactId> <version>0.4.13</version> <configuration> <imageName>itmuch/microservice-discovery-eureka:0.0.1</imageName> <cmd>["java", "-version"]</cmd> <entryPoint>["java", "-jar", "${project.build.finalName}.jar"]</entryPoint> <!-- Here is the configuration for copying the jar package to the specified directory of the docker container--> <resources> <resource> <targetPath>/</targetPath> <directory>${project.build.directory}</directory> <include>${project.build.finalName}.jar</include> </resource> </resources> </configuration> </plugin> </plugins> </build> This is the end of this article about the docker-maven-plugin plugin cannot pull the corresponding jar package. For more related content about the docker maven plugin plugin cannot pull, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: What are the differences between xHTML and HTML tags?
>>: 6 inheritance methods of JS advanced ES6
In Linux systems, especially server systems, it i...
The question arises This question arose when I wa...
Preface: I recently started to study the construc...
Table of contents summary Basic Example motivatio...
Anyone who has worked on a large system knows tha...
Nowadays, whether you are on the sofa at home or ...
Use the Linux utility certbot to generate https c...
Introduction MySQL slow query log is an important...
Win10 installs mysql5.7 decompressed version, for...
When making a table page, sometimes the width set ...
Preface: position:sticky is a new attribute of CS...
Table of contents 1. Merge interface 1.1 Non-func...
This article example shares the specific code of ...
Apache Tomcat is an open source software that imp...
This article uses examples to describe the add, d...