Install the Coolify CLI
Install the coolify binary on the computer or CI runner that will send requests to Coolify.
Choose an installation method
Install with the install script
The install script detects amd64 and arm64, downloads the latest GitHub release, and installs the binary in /usr/local/bin:
curl -fsSL https://raw.githubusercontent.com/coollabsio/coolify-cli/main/scripts/install.sh | bashA global installation may request sudo. To install without administrator access, pass --user; the binary is written to ~/.local/bin:
curl -fsSL https://raw.githubusercontent.com/coollabsio/coolify-cli/main/scripts/install.sh | bash -s -- --userAdd ~/.local/bin to PATH if your shell cannot find coolify.
Homebrew
On macOS or Linux, you can install from the Coolify tap:
brew install coollabsio/coolify-cli/coolify-cliVerify the installation
coolify version
coolify --helpThe first CLI command creates its configuration file when the file does not exist. Follow Authentication to configure a token, then use Contexts to manage saved Coolify connections.
Enable shell completion
Generate completion instructions for your shell:
coolify completion bash
coolify completion zsh
coolify completion fish
coolify completion powershellRun coolify completion <shell> --help for the commands that load completion now or enable it for future sessions.
To install a newer release later, follow Update the Coolify CLI. To remove the binary and optionally its saved contexts, follow Uninstall the Coolify CLI.
