Getting Started
Hall runs as a single binary on your host. Keeping things simple and clean.
Setup
Download the Hall binary
VERSION="0.0.7"
OS="linux" # or darwin
ARCH="amd64" # or arm64
curl -L -o hall "https://get.hall.kvick.dev/${VERSION}/hall_${OS}_${ARCH}"
chmod +x hall
mv hall /usr/local/bin/Enable Docker NRI
The Docker NRI socket can be configured in the file /etc/docker/daemon.json or when running Docker Desktop through the settings page in the UI. The Docker daemon needs to be restarted for the changes to take effect.
{
"nri-opts": {
"enable": true,
"socket-path": "/var/run/nri/docker.sock"
}
}Run Hall
Run setup and start the daemon.
hall setup
hall daemon