Skip to content

Latest commit

 

History

History
39 lines (23 loc) · 1.44 KB

configure-gcp-credentials.md

File metadata and controls

39 lines (23 loc) · 1.44 KB

Configuring Credentials for Google Container Registry (GCR)

There are a few ways of supplying Jib with the credentials to push and pull images from your private GCR registry.

Using the Docker credential helper

The easiest way is to install the docker-credential-gcr.

Installation

If you have gcloud (Cloud SDK) installed, you can run:

gcloud components install docker-credential-gcr

Alternatively, if you have go get installed, you can run:

go get -u github.com/GoogleCloudPlatform/docker-credential-gcr

Alternatively, you can download docker-credential-gcr from its Github Releases.

Enable the Container Registry API

If you have not already done so, make sure you enable the Container Registry API for the Google Cloud Platform account you wish to use.

Log in

Log in to the account you with to use with:

docker-credential-gcr gcr-login

This stores the credentials in docker-credential-gcr's private credential store.

Now, you can use Jib to pull and push from images in the form gcr.io/your-gcp-project/your-image-name.