Documentation Index Fetch the complete documentation index at: https://docs.chainloop.dev/llms.txt
Use this file to discover all available pages before exploring further.
You can install the Chainloop CLI using one of the following methods:
Installation Script
From GitHub Releases
From Source
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s
you can install a specific version with curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --version vx.x.x
and customize the install path (default to /usr/local/bin) curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --path /my-path
To install without sudo, provide a user-accessible path: curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --path ~/.local/bin
if cosign is present in your system, in addition to the checksum check, a signature verification will be performed. This behavior can be enforced via the —force-verification flag. curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --force-verification
To install the open-source edition instead: curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --oss
Refer to GitHub releases page and download the binary of your choice. git clone [email protected] :chainloop-dev/chainloop
cd chainloop && make -C app/cli build
./app/cli/bin/chainloop version
= > chainloop version ...
On-Premises CLI Configuration (if applicable)
If you are running your own instance of Chainloop Platform. You must change the default endpoints’ values pointing by using the following command:
chainloop config save \
--control-plane my-controlplane.acme.com:443 \
--artifact-cas cas.acme.com:443 \
--platform my-platform.acme.com:443