Installing cloacinactl
cloacinactl is the operator + developer CLI for Cloacina. It bundles
the daemon as a subcommand (cloacinactl daemon), so a single install
gives you both.
curl -fsSL https://get.cloacina.dev/install.sh | bash
That downloads the latest release tarball for your OS + arch from
GitHub Releases,
verifies its SHA256, and installs the binary to ~/.cloacina/bin. If
that directory isn’t on your $PATH, the installer prints the line to
add to your shell rc.
curl -fsSL https://get.cloacina.dev/install.sh | bash -s -- --version v0.7.0
Use a specific tag from the releases page. Any release that has the binary uploaded for your OS/arch will work.
curl -fsSL https://get.cloacina.dev/install.sh | bash -s -- --prefix /usr/local
Installs to /usr/local/bin. Uses sudo if the directory isn’t writable
by the current user.
| Flag | Default | Notes |
|---|---|---|
--version vX.Y.Z |
latest release | Pin to a specific tag |
--prefix DIR |
$HOME/.cloacina |
Install root; binary lands in DIR/bin |
--quiet |
off | Suppress informational output |
Set CLOACINA_REPO=owner/repo to install from a fork.
Cross-compiled binaries are uploaded on every release tag for:
x86_64-unknown-linux-gnuaarch64-unknown-linux-gnux86_64-apple-darwinaarch64-apple-darwin
Windows is not currently supported. If you need it, file an issue.
cloacinactl --version
cloacinactl daemon --help
The --version output should match the release tag you installed.
Re-run the same one-liner. The installer is idempotent — it overwrites
the binary in place. To pin a new version, pass --version.
rm ~/.cloacina/bin/cloacinactl
# or for a system-wide install:
sudo rm /usr/local/bin/cloacinactl
Then remove the PATH-add line from your shell rc if you added one.
If your platform isn’t covered above, install with cargo:
cargo install --git https://github.com/colliery-io/cloacina cloacinactl
This builds from the main branch tip. Pass --tag vX.Y.Z to pin a release.
The Python bindings ship as a wheel — no separate installer needed:
pip install cloaca # default (both backends)
pip install cloaca[sqlite] # SQLite only
pip install cloaca[postgres] # PostgreSQL only
See the Python quick start for usage.
The server is published as a container image on every release:
docker pull ghcr.io/colliery-io/cloacina-server:v0.7.0
See Running the server image for the full container deploy walkthrough — environment variables, signature enforcement, log retention.
A Helm chart with an embedded local Postgres subchart ships in-tree:
helm install cloacina-server ./charts/cloacina-server
See Deploying to Kubernetes for production values, the embedded Postgres subchart story, and the operator-flag reference.