msrahman07 / jib

:sailboat: Build container images for your Java applications.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

experimental Analytics Maven Central Gradle Plugin Portal Gitter version

Jib

Jib - Containerize your Java applications.

What is Jib?

Jib builds Docker and OCI images for your Java applications and is available as plugins for Maven and Gradle.

Maven: See documentation for jib-maven-plugin.
Gradle: See documentation for jib-gradle-plugin.

Jib as a container-building library for Java is work-in-progress. Watch for updates.

Goals

  • Fast - Deploy your changes fast. Jib separates your application into multiple layers, splitting dependencies from classes. Now you don’t have to wait for Docker to rebuild your entire Java application - just deploy the layers that changed.

  • Reproducible - Rebuilding your container image with the same contents always generates the same image. Never trigger an unnecessary update again.

  • Daemonless - Reduce your CLI dependencies. Build your Docker image from within Maven or Gradle and push to any registry of your choice. No more writing Dockerfiles and calling docker build/push.

Quickstart

Maven

See documentation for using jib-maven-plugin.

Gradle

See documentation for using jib-gradle-plugin.

How Jib Works

Whereas traditionally a Java application is built as a single image layer with the application JAR, Jib's build strategy separates the Java application into multiple layers for more granular incremental builds. When you change your code, only your changes are rebuilt, not your entire application. These layers, by default, are layered on top of a distroless base image. For more information, check out the official blog post.

See also rules_docker for a similar existing container image build tool for the Bazel build system.

Frequently Asked Questions (FAQ)

See the Frequently Asked Questions (FAQ) wiki page.

Community

About

:sailboat: Build container images for your Java applications.

License:Apache License 2.0


Languages

Language:Java 98.9%Language:Shell 0.9%Language:Batchfile 0.1%