Skip to main content
Version: 1.0.0

Installation

Install the blobber CLI.

Download and install the latest release:

curl -fsSL https://blobber.meigma.dev/install.sh | sh

The script automatically:

  • Detects your OS and architecture
  • Verifies checksums (SHA256)
  • Verifies signatures (if cosign is installed)
  • Installs to ~/.local/bin (following XDG conventions)

Options

Customize the installation with environment variables:

VariableDescriptionDefault
BLOBBER_VERSIONVersion to installlatest
BLOBBER_INSTALLInstallation directory~/.local/bin

Install a specific version:

curl -fsSL https://blobber.meigma.dev/install.sh | BLOBBER_VERSION=1.0.0 sh

Install to a custom directory:

curl -fsSL https://blobber.meigma.dev/install.sh | BLOBBER_INSTALL=/usr/local/bin sh
tip

Ensure ~/.local/bin is in your PATH. Add this to your shell profile:

export PATH="$HOME/.local/bin:$PATH"

Verify Installation

blobber --help

Requirements

  • Docker credentials configured for authenticated registries

Blobber uses your existing Docker credentials from ~/.docker/config.json. If you can docker push to a registry, blobber can too.

Next Steps