docker-credential-space

command module
v0.0.0-...-18ecefb Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 13, 2023 License: Apache-2.0 Imports: 5 Imported by: 0

README

Docker credential provider for Space Container Registry

official JetBrains project

docker-credential-space is a Docker credential helper for JetBrains Space Container Registry. It allows for v18.03+ Docker clients to easily make authenticated requests to JetBrains Space repositories (*.registry.jetbrains.space, etc.).

The helper implements the Docker Credential Store API, but enables more advanced authentication schemes for JetBrains Space users.

JetBrains Space Credentials

The helper searches for credentials in the JB_SPACE_CLIENT_ID and JB_SPACE_CLIENT_SECRET environment variables.

Examples:

To verify that credentials are being returned for a given registry, e.g. for https://org.registry.jetbrains.space:

echo "https://org.registry.jetbrains.space" | docker-credential-space get
Building from Source

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

You can download the source code, compile the binary, and put it in your $GOPATH with go get.

go get -u github.com/JetBrains/docker-credential-space

If $GOPATH/bin is in your system $PATH, this will also automatically install the compiled binary. You can confirm using which docker-credential-space and continue to the section on Configuration and Usage.

Alternatively, you can use make to build the program. The executable will be output to the bin directory inside the repository.

cd $GOPATH/src/github.com/JetBrains/docker-credential-space
make

Then, you can put that binary in your $PATH to make it visible to docker. For example, if /usr/bin is present in your system path:

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

Configuration and Usage

Add a credHelpers entry in the Docker config file (usually ~/.docker/config.json on OSX and Linux, %USERPROFILE%\.docker\config.json on Windows) for each JetBrains Space registry that you care about. The key should be the domain of the registry (without the "https://") and the value should be the suffix of the credential helper binary (everything after "docker-credential-").

e.g. for `docker-credential-space`:
    {
      "credHelpers": {
            "coolregistry.com": ... ,
            "org.registry.jetbrains.space": "space",
            ...
      }
    }
  

License

Apache 2.0. See LICENSE for more information.

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL