All notable changes to this project will be documented in this file.
- Added automatic update check. Jib CLI will now display a message if a new version is available. See the privacy page for more details. (#3165)
- Added
--image-metadata-out
option to specify JSON output file that should contain image metadata (image ID, digest, and tags) after build is complete. (#3187)
- Fixed an issue where critical error messages (for example, unauthorized access from a registry) were erased by progress reporting and not shown. (#3148)
- Added support for configuring registry mirrors for base images. This is useful when hitting Docker Hub rate limits. Only public mirrors (such as
mirror.gcr.io
) are supported. (#3134)
- Changed the default base image of the Jib CLI jar command from the
openjdk
images to theadoptopenjdk
images on Docker Hub. (#3108)
- Added the
jar
command which can be used to containerize a JAR with$ jib jar --target ... my-app.jar
. By default, the command will add the contents of the JAR into optimized layers on the container. (#11)