Docs Blog Apps Pricing

Getting Started

1. Install the CLI 2. Login 3. Build and Push 4. Boot on GCP 5. Boot on Bare Metal

Guides

Authentication Pushing and Pulling Images Configuring Images Working with Hosts Working with GCP Working with Bare Metal latitude.sh OVHcloud Working with AWS Backups Tips and Tricks

CLI Reference

kheeper auth kheeper authorizations kheeper bots kheeper clouds kheeper contexts kheeper hosts kheeper images kheeper orgs kheeper push kheeper releases kheeper status

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.16.0/kheeper_v0.16.0_linux_amd64.tar.gz" \
  | sudo tar xz -C /usr/local/bin kheeper docker-credential-kheeper
Advanced Install
VERSION="v0.16.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