Deployment Manual / Version 2207
Table Of Contents<configuration> <container> <entrypoint>INHERIT</entrypoint> <args> <arg>application</arg> </args> <user>coremedia:coremedia</user> <environment> <JAVA_HEAP>256m</JAVA_HEAP> <JAVA_PARALLEL_GC>true</JAVA_PARALLEL_GC> <SPRING_BOOT_EXPLODED_APP>true</SPRING_BOOT_EXPLODED_APP> <SPRING_BOOT_EXPLODED_MAINCLASS>@jib-main-class-file</SPRING_BOOT_EXPLODED_MAINCLASS> <SPRING_BOOT_EXPLODED_CLASSPATH>@jib-classpath-file</SPRING_BOOT_EXPLODED_CLASSPATH> </environment> <ports> <port>8080</port> <port>8081</port> <port>8199</port> </ports> </container> </configuration>
With this directive, we tell Jib to inherit the entrypoint information from the base image. In this case it is
| |
The argument to the entrypoint script. The | |
The user to start the application. With this base image, we need to use the | |
The environment variables the | |
With this environment variable we tell the script to extract or expect an extracted spring boot app in the image. Jib always extracts the application, because of the Spring-Boot layered jar approach. | |
The application starter class we defined in the properties section above. | |
The classloader classpath. This mimics the classloading, the Spring-Boot Jib extension automatically sets. | |
With the java-application-base image, we can activate the jmx-prometheus-agent. With the distroless approach either using the prometheus actuator is the preferred way. |