Releases: GoogleContainerTools/jib
Releases · GoogleContainerTools/jib
jib-gradle-plugin v0.1.0
Alpha 1
Known Limitations
- Must use a Docker credential helper.
- Does not support exporting to a Docker context.
- Cannot build directly to a Docker daemon.
- Pushing to Azure Container Registry is not currently supported.
See CHANGELOG.md for more details.
jib-maven-plugin v0.1.6
Alpha 7
Major Changes
- Base image layers are now cached on a user-level rather than a project level - this allows for multiple projects to use the same cache for base image layers - disable with
useOnlyProjectCacheconfiguration. - Fixes
jib:dockercontextnot building aDockerfile.
Known Limitations
- Cannot build directly to a Docker daemon.
- Pushing to Azure Container Registry is not currently supported.
See CHANGELOG.md for more details.
jib-maven-plugin v0.1.5
Alpha 6
Major Changes
- Export a Docker context (including a Dockerfile) with
jib:dockercontext.
Known Limitations
- Cannot build directly to a Docker daemon.
- Pushing to Azure Container Registry is not currently supported.
See CHANGELOG.md for more details.
jib-maven-plugin v0.1.4
Alpha 5
Major Changes
- Bug fixes
Known Limitations
- Cannot build directly to a Docker daemon.
- Pushing to Azure Container Registry is not currently supported.
See CHANGELOG.md for more details.
jib-maven-plugin v0.1.3
Alpha 4
Major Changes
- Support for OCI images
Known Limitations
- Cannot build directly to a Docker daemon.
- Pushing to Azure Container Registry is not currently supported.
See CHANGELOG.md for more details.
jib-maven-plugin v0.1.2
Alpha 3
Major Changes
- Images are now reproducible - rebuilding your container image with the same contents always generates the same image.
- Credentials are inferred from a Docker config (if exists) if none are provided explicitly.
Known Limitations
- Does not build OCI images.
- Cannot build directly to a Docker daemon.
- Pushing to Azure Container Registry is not currently supported.
See CHANGELOG.md for more details.
jib-maven-plugin v0.1.1
Alpha 2
Major Changes
- Configure credential helpers as a list:
<credentialHelperNames>
<credentialHelperName>gcr</credentialHelperName>
<credentialHelperName>ecr-login</credentialHelperName>
</credentialHelperNames>- Define registry credentials in Maven settings (
~/.m2/settings.xml)
<settings>
...
<servers>
...
<server>
<id>MY_REGISTRY</id>
<username>MY_USERNAME</username>
<password>MY_SECRET</password>
</server>
</servers>
</settings>Known Limitations
- Does not build OCI images.
- Cannot build directly to a Docker daemon.
- Pushing to Azure Container Registry is not currently supported.
See CHANGELOG.md for more details.
jib-maven-plugin v0.1.0
Alpha
Known Limitations
- Does not build OCI images.
- Pushing to Docker Hub does not seem to work.
- Cannot build directly to a Docker daemon.
- Cannot use a private image as a base image.
- Does not work on Windows
- Does not work on projects with no resources