我正在使用maven jib插件来docker化我的基于Spring启动的应用程序。
https://github.com/GoogleContainerTools/jib/tree/master/jib-maven-plugin
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<resources>
<resource>
<directory>src/main/resources/static</directory>
</resource>
</resources>
<outputDirectory>${project.build.directory}/webapp/static</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>jib-maven-plugin</artifactId>
<version>0.9.13</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>build</goal>
</goals>
</execution>
</executions>
<configuration>
<from>
<image>${base.image}</image>
</from>
<to>
<image>${registry}/${repository}/${image}:${version}</image>
</to>
<extraDirectory>${project.build.directory}/webapp</extraDirectory>
</configuration>
</plugin>
我在 JIB 插件中没有参数或入口点。我想通过争论来控制它。
运行"mvn 全新安装"时,我在日志中看到以下行。
Container entrypoint set to [java, -cp, /app/resources:/app/classes:/app/libs/*, com.test.Application]
我尝试将--spring.config.location作为程序参数传递,如下所示。但它不是选择我的应用程序属性。我尝试修改起始类名称以检查它是否正常工作,但它仍在使用 com.test.Application。看起来,这里没有考虑-c。
码头工人运行 -v /local/path/config/:/secrets/ 图片:1.0 bash "java -cp/app/libs/*:/app/resources/:/app/classes/-Xmx2g -Xms2g com.test.application --spring.config.location=/secrets/application.yml"
由于您使用 Jib 构建容器映像,因此默认入口点为
ENTRYPOINT ["java", jib.container.jvmFlags, "-cp", "/app/resources:/app/classes:/app/libs/*", jib.container.mainClass]
此外,jib 使用仅包含运行时依赖项的无发行版映像。因此,您无法在容器中运行bash
。
这应该可以完成这项工作。
docker run -e "spring.config.location=/secrets/application.yml" -v /local/path/config/:/secrets/ IMAGE:1.0
理解问题,当使用动臂作为maven插件时
然后入口点在容器内传递,但似乎 jib 插件没有拿起它.
因此,需要对该位置的参数访问进行以下更改:
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>jib-maven-plugin</artifactId>
<version>2.2.0</version>
<configuration>
<to>
<image>image-url</image>
</to>
<container>
<creationTime>${maven.build.timestamp}</creationTime>
<mainClass>com.package.SpringBootMainClass</mainClass>
<args>
<arg>--spring.config.location=/demo/location/application.yml</arg>
</args>
</container>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>build</goal>
</goals>
</execution>
</executions>
</plugin>