— Install

AppBahn CLI

One binary. Six platforms. Hosted on appbahn.eu — no GitHub account, no rate limits, no detours. Verify the release with the published SHA-256 checksums before you run it.

Current release 2026.05.29-2

— One-liner

Install the latest release

curl -fsSL https://appbahn.eu/download/install.sh | bash

The installer detects your OS and architecture, downloads the matching archive, verifies the SHA-256 checksum against checksums.txt, and installs to /usr/local/bin/appbahn. Override with APPBAHN_INSTALL_DIR=~/.local/bin or pass --install-dir.

Pin to a specific version


            curl -fsSL https://appbahn.eu/download/install.sh | bash -s -- --version 2026.05.29-2
          
— Direct downloads

Archives · version 2026.05.29-2

Signed SHA-256 sums are in checksums.txt . Extract the archive and drop the appbahn binary anywhere on your PATH.

— Container image

Run the CLI as a container

The CLI is also published as a distroless container on GHCR. Useful for CI pipelines that already have a Docker runtime.

docker run --rm ghcr.io/diverofdark/appbahn/cli:latest version
— Build from source

Go 1.25 · one command

If you prefer to build the binary yourself — for air-gapped clusters, reproducibility, or just peace of mind — clone the repository and compile with the Go toolchain.

go install github.com/diverofdark/appbahn/cli@latest

Source lives in the public mirror under cli/. The repository is ELv2 licensed.