grosskur / docker-credential-gcr

A Docker credential store implementation for GCR customers

Home Page:https://gcr.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

docker-credential-gcr

Introduction

docker-credential-gcr is Google Container Registry's Docker credential helper. It allows for Docker clients v1.10+ to easily make authenticated requests to GCR's repositories (gcr.io, eu.gcr.io, etc.).

The helper implements the Docker Credential Store API, but enables more advanced authentication schemes for GCR's users. In particular, it respects Application Default Credentials and is capable of generating credentials automatically (without a explicit login operation) when running in App Engine or Compute Engine.

GCR Credentials

The helper searches for GCR credentials in the following order:

  1. In a JSON file whose path is specified by the GOOGLE_APPLICATION_CREDENTIALS environment variable.
  2. In a JSON file in a location known to the helper. On Windows, this is %APPDATA%/gcloud/application_default_credentials.json. On other systems, $HOME/.config/gcloud/application_default_credentials.json.
  3. On Google App Engine it uses the appengine.AccessToken function.
  4. On Google Compute Engine and Google App Engine Managed VMs, it fetches credentials from the metadata server.
  5. From the gcloud SDK (i.e. those printed via gcloud auth print-access-token).
  6. In the helper's private credential store (i.e. those stored via docker-credential-gcr gcr-login)

Other Credentials

The helper implements the Docker Credential Store API and can be used to store credentials for other repositories. WARNING: Credentials are stored in plain text in a file under the user's home directory (e.g. $HOME/.config/gcloud/docker_credentials.json on non-windows systems).

Building from Source

The program in this repository is written with the Go programming language and built with make. These instructions assume that Go and make are installed on the system.

  1. Download the source and put it in your $GOPATH with go get.

    go get github.com/GoogleCloudPlatform/docker-credential-gcr
  2. Use make to build the program. The executable will be output to the bin directory inside the repository.

    cd $GOPATH/src/github.com/GoogleCloudPlatform/docker-credential-gcr
    make
  3. Put that binary in your $PATH. e.g. if /usr/bin is present on your path:

    sudo mv ./bin/docker-credential-gcr /usr/bin/docker-credential-gcr

Installation and Usage

  • Configure the Docker CLI to use docker-credential-gcr as its credential store

     docker-credential-gcr configure-docker
    • Alternativley, manually set the credsStore option in your docker config (usually ~/.docker/config.json) file with the suffix of the compiled binary (everything after "docker-credential-"). e.g. for docker-credential-gcr:

      {
        "credsStore": "gcr"
      }
  • Log in to GCR

     docker-credential-gcr gcr-login
  • Use Docker!

     docker pull gcr.io/my-project/neato-container
  • Log out from GCR

     docker-credential-gcr gcr-logout

License

Apache 2.0. See LICENSE for more information.

About

A Docker credential store implementation for GCR customers

https://gcr.io

License:Other


Languages

Language:Go 98.6%Language:Makefile 1.4%