jib
jib copied to clipboard
🏗 Build container images for your Java applications.
Pulling from registry-1.docker.io and pushing to registry.hub.docker.com should still be able to use the cross-repository mounts since they're aliases.
**Description of the issue**: Sometimes it is required to have several configurations in gradle depending on the lifecycle stage of the code deployed. Specifically I'd like to have two jib...
Creating an umbrella issue to track various issues and feature requests related to JAR/WAR containerization. * #1852 support fat/shaded JAR - An alternative is to have some means to exclude...
This is now in progress - [ ] share common test classes (#2350) - [ ] share common test resources - [ ] ... and --------------------- We should share as...
**Environment**: Hosted Gitlab 11.10 with Docker-Runner - *Jib version:* 1.8.0 - *Build tool:* Maven 3.5.4 - *OS:* alpine 3.9 **Description of the issue**: When using JIB only via commandline (no...
Right now, Jib only supports Docker daemon images and Docker-formatted tars locally. As a follow-up to #2124, it'd be good to allow Jib to use local OCI base images. We...
Since our integration tests use Docker, we don't really have any tests right now for OCI images built by Jib. We should consider looking into ways of building/running OCI images...
Using the native Gradle logger was probably why [our deprecation messages were overwritten](https://github.com/GoogleContainerTools/jib/pull/2109#issuecomment-555174722). We should be careful not to make use of the native Maven or Gradle loggers. We can...
This should just a matter of replacing ``` index.addManifest(manifestDescriptor, imageReference.toStringWithTag()); ``` with ``` for (String tag : allTargetImageTags) { index.addManifest(manifestDescriptor, imageReference.withTag(tag).toStringWithTag()); } ``` in `ImageTarball`. Just need a way to...
This can maybe configured by the user with timestamp settings. we might need to provide support for milliseconds. https://reproducible-builds.org/specs/source-date-epoch/