We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/GoogleContainerTools/jib/tree/master/jib-maven-plugin#global-jib-configuration
I try to combine jib-maven-plugin with registry-mirrors in gitlab build / local development.
In this scenario I find the available global-config little bit "unclean".
Maybe something like this improve this:
<plugin> <groupId>com.google.cloud.tools</groupId> <artifactId>jib-maven-plugin</artifactId> <configuration> <from> ... </from> <to> .... </to> <registryMirrors> <registryMirror> <registry>registry-1.docker.io</registry> <mirrors> <mirror> <id>gcr.io</id> <url>mirror.gcr.io</url> </mirror> <mirror> <id>company</id> <url>cr.company.cloud</url> </mirror> </mirrors> </registryMirror> </registryMirrors> </configuration> </plugin>
The with properties similar to -Djib.from.auth.username .. I would like to define the auth stuff:
-Djib.registryMirror.[id].username and -Djib.registryMirror.[id].password
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://github.com/GoogleContainerTools/jib/tree/master/jib-maven-plugin#global-jib-configuration
I try to combine jib-maven-plugin with registry-mirrors in gitlab build / local development.
In this scenario I find the available global-config little bit "unclean".
Maybe something like this improve this:
The with properties similar to -Djib.from.auth.username .. I would like to define the auth stuff:
-Djib.registryMirror.[id].username and -Djib.registryMirror.[id].password
The text was updated successfully, but these errors were encountered: