Install the CLI
The kheeper CLI is the primary interface for using the Kheeper registry.
We also provide the docker-credential-kheeper binary to allow podman to authenticate to the registry.
macOS
Install via Homebrew:
brew tap kheepercom/tap
brew install kheeper
Linux
Download the latest release and extract it onto your PATH:
curl -fsSL "https://github.com/kheepercom/homebrew-tap/releases/download/v0.2.0/kheeper_v0.2.0_linux_amd64.tar.gz" \
| sudo tar xz -C /usr/local/bin kheeper docker-credential-kheeper
Advanced Install
VERSION="v0.2.0"
ARCH="amd64"
DEST="/usr/local/bin"
curl -fsSL "https://github.com/kheepercom/homebrew-tap/releases/download/${VERSION}/kheeper_${VERSION}_linux_${ARCH}.tar.gz" \
| sudo tar xz -C "$DEST" kheeper docker-credential-kheeper
Make sure $DEST is on your PATH.
Verify the installation
kheeper --version