本文主要是介绍使用dockerfile-maven-plugin打包镜像时使用本地镜像作基础,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
使用dockerfile-maven-plugin插件打包Docker镜像时,不要从远程仓库中拉取,而是直接使用本地镜像:
<plugin><groupId>com.spotify</groupId><artifactId>dockerfile-maven-plugin</artifactId><configuration><pullNewerImage>false</pullNewerImage><repository>${docker.image.prefix}/kjc/${project.artifactId}</repository><buildArgs><JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE></buildArgs></configuration>
</plugin>
参考:stackoverflow.com
这篇关于使用dockerfile-maven-plugin打包镜像时使用本地镜像作基础的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!