1. Open the Gradle build file and append the container block at the end of the Jib configuration section.
Syntax:
container {
jvmFlags = ['ARG1=Value','ARG2=Value']
}
e.g.
container {
jvmFlags = ['-Dserver.name=tomcat10','-Dhost.name=tomcat']
}
1. Open the Gradle build file and append the container block at the end of the Jib configuration section.
Syntax:
container {
jvmFlags = ['ARG1=Value','ARG2=Value']
}
e.g.
container {
jvmFlags = ['-Dserver.name=tomcat10','-Dhost.name=tomcat']
}
Comments
0 comments
Article is closed for comments.