# Download Berth, binaries, Docker image & Helm chart

> Download Berth for macOS, Linux and Windows, or pull the signed container image and OCI Helm chart. Latest release, checksums and changelog.

Grab a standalone binary, the signed container image, or the Helm chart. Viewing your cluster is free, a [free key](https://berth.agrohi.com/login/) unlocks changes.

## Latest release

Per-OS/arch binaries, checksums, release notes and download counts are listed live on the [download page](https://berth.agrohi.com/download/) (sourced from the [GitHub Releases](https://github.com/unishsys/berth/releases) for `unishsys/berth`). Binaries are published for macOS, Linux and Windows.

Verify your download against `SHA256SUMS`:

```
shasum -a 256 -c SHA256SUMS --ignore-missing
```

After downloading, make it executable and run it against your kubeconfig:

```
chmod +x berth-* && ./berth-* remotecluster
# then open http://localhost:8081
```

[Full binary setup guide →](https://berth.agrohi.com/install/#run-the-binary)

## Container image

Multi-arch, SBOM + provenance, cosign-signed. Run it locally with your kubeconfig mounted:

```
docker run --rm -p 8081:8081 \
  -v "$HOME/.kube/config:/home/nonroot/.kube/config:ro" \
  ghcr.io/unishsys/berth:latest remotecluster
```

[Docker setup guide →](https://berth.agrohi.com/install/#run-with-docker)

## Helm chart

OCI chart with RBAC and token auth configured. Installs into your cluster:

```
helm upgrade --install berth oci://ghcr.io/unishsys/charts/berth \
  --namespace berth --create-namespace
```

[Helm setup guide →](https://berth.agrohi.com/install/#install-with-helm)

Previous releases are linked on the [download page](https://berth.agrohi.com/download/) and on [GitHub](https://github.com/unishsys/berth/releases).

First time here? Follow the [installation guide](https://berth.agrohi.com/install/).
