Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

experimental Maven Central Gitter version

Jib - Containerize your Maven project

Jib is a Maven plugin for building Docker and OCI images for your Java applications.

For information about the project, see the Jib project README. For the Gradle plugin, see the jib-gradle-plugin project.

Upcoming Features

These features are not currently supported but will be added in later releases.

  • Support for WAR format

Quickstart

Setup

In your Maven Java project, add the plugin to your pom.xml:

<plugin>
  <groupId>com.google.cloud.tools</groupId>
  <artifactId>jib-maven-plugin</artifactId>
  <version>0.1.6</version>
  <configuration>
    <registry>myregistry</registry>
    <repository>myapp</repository>
  </configuration>
</plugin>

Configuration

Configure the plugin by changing registry and repository to be the registry and repository to push the built image to.

Make sure you have the docker-credential-gcr command line tool. Jib automatically uses docker-credential-gcr for obtaining credentials. See Authentication Methods for other ways of authenticating.

For example, to build the image gcr.io/my-gcp-project/my-app, the configuration would be:

<configuration>
  <registry>gcr.io</registry>
  <repository>my-gcp-project/my-app</repository>
</configuration>

Make sure you have the docker-credential-ecr-login command line tool. Jib automatically uses docker-credential-ecr-login for obtaining credentials. See Authentication Methods for other ways of authenticating.

For example, to build the image aws_account_id.dkr.ecr.region.amazonaws.com/my-app, the configuration would be:

<configuration>
  <registry>aws_account_id.dkr.ecr.region.amazonaws.com</registry>
  <repository>my-app</repository>
</configuration>

Make sure you have a docker-credential-helper set up. For example, on macOS, the credential helper would be docker-credential-osxkeychain. See Authentication Methods for other ways of authenticating.

For example, to build the image my-docker-id/my-app, the configuration would be:

<configuration>
  <registry>registry.hub.docker.com</registry>
  <repository>my-docker-id/my-app</repository>
  <credHelpers><credHelper>osxkeychain</credHelper></credHelpers>
</configuration>

TODO: Add more examples for common registries.

Build Your Image

Build your container image with:

mvn compile jib:build

Subsequent builds are much faster than the initial build.

If you want to clear Jib's build cache and force it to re-pull the base image and re-build the application layers, run:

mvn clean compile jib:build

Having trouble? Let us know by submitting an issue, contacting us on Gitter, or posting to the Jib users forum.

Bind to a lifecycle

You can also bind jib:build to a Maven lifecycle, such as package, by adding the following execution to your jib-maven-plugin definition:

<plugin>
  <groupId>com.google.com.tools</groupId>
  <artifactId>jib-maven-plugin</artifactId>
  ...
  <executions>
    <execution>
      <phase>package</phase>
      <goals>
        <goal>build</goal>
      </goals>
    </execution>
  </executions>
</plugin>

Then, you can build your container image by running:

mvn package

Export to a Docker context

Jib can also export to a Docker context so that you can build with Docker, if needed:

mvn compile jib:dockercontext

The Docker context will be created at target/jib-dockercontext by default. You can change this directory with the targetDir configuration option or the jib.dockerDir parameter:

mvn compile jib:dockercontext -Djib.dockerDir=my/docker/context/

You can then build your image with Docker:

docker build -t myregistry/myapp my/docker/context/

Extended Usage

Extended configuration options provide additional options for customizing the image build.

Field Default Description
from gcr.io/distroless/java The base image to build your application on top of.
registry Required The registry server to push the built image to.
repository Required The image name/repository of the built image.
tag latest The image tag of the built image (the part after the colon).
credHelpers Required Suffixes for credential helpers (following docker-credential-)
jvmFlags None Additional flags to pass into the JVM when running your application.
mainClass Uses mainClass from maven-jar-plugin The main class to launch the application from.
enableReproducibleBuilds true Building with the same application contents always generates the same image. Note that this does not preserve file timestamps and ownership.
imageFormat Docker Use OCI to build an OCI container image.
useOnlyProjectCache false If set to true, Jib does not share a cache between different Maven projects.

Example

In this configuration, the image is:

  • Built from a base of openjdk:alpine (pulled from Docker Hub)
  • Pushed to localhost:5000/my-image:built-with-jib
  • Runs by calling java -Xms512m -Xdebug -Xmy:flag=jib-rules -cp app/libs/*:app/resources:app/classes mypackage.MyApp
  • Reproducible
  • Built as OCI format
<configuration>
  <from>openjdk:alpine</from>
  <registry>localhost:5000</registry>
  <repository>my-image</repository>
  <tag>built-with-jib</tag>
  <credHelpers>
    <credHelper>osxkeychain</credHelper>
  </credHelpers>
  <jvmFlags>
    <jvmFlag>-Xms512m</jvmFlag>
    <jvmFlag>-Xdebug</jvmFlag>
    <jvmFlag>-Xmy:flag=jib-rules</jvmFlag>
  </jvmFlags>
  <mainClass>mypackage.MyApp</mainClass>
  <enableReproducibleBuilds>true</enableReproducibleBuilds>
  <imageFormat>OCI</imageFormat>
</configuration>

Authentication Methods

Pushing/pulling from private registries require authorization credentials. These can be retrieved using Docker credential helpers or defined in your Maven settings. If you do not define credentials explicitly, Jib will try to use credentials defined in your Docker config or infer common credential helpers.

Using Docker Credential Helpers

Docker credential helpers are CLI tools that handle authentication with various registries.

Some common credential helpers include:

Configure credential helpers to use by specifying them in the credHelpers configuration.

Example configuration:

<configuration>
  ...
  <credHelpers>
    <credHelper>osxkeychain</credHelper>
  </credHelpers>
  ...
</configuration>

Using Maven Settings

Registry credentials can be added to your Maven settings. These credentials will be used if credentials could not be found in any specified Docker credential helpers.

If you're considering putting credentials in Maven, we highly recommend using maven password encryption.

Example settings.xml:

<settings>
  ...
  <servers>
    ...
    <server>
      <id>MY_REGISTRY</id>
      <username>MY_USERNAME</username>
      <password>{MY_SECRET}</password>
    </server>
  </servers>
</settings>
  • The id field should be the registry server these credentials are for.
  • We do not recommend putting your raw password in settings.xml.

How Jib Works

See the Jib project README.

Known Limitations

These limitations will be fixed in later releases.

  • Does not build directly to a Docker daemon.
  • Pushing to Azure Container Registry is not currently supported.

Frequently Asked Questions (FAQ)

See the Jib project README.

Community

See the Jib project README.