Download urgentry

One binary, all supported platforms, release checksums, plus Docker and source-build paths.

Maintained by Wraxle LLC
Last updated

Quick install

# install
curl -fsSL https://urgentry.com/install.sh | sh

Verify the install

# verify locally
urgentry version
urgentry serve

Manual download

Download the platform archives, checksums, and release notes from the GitHub release page.

Which path should I pick?

Path Best when First verification
Install script You want the shortest path to one working binary on macOS or Linux urgentry version
Docker You want a packaged local runtime without building from source docker run ... serve
Source build You want a repo checkout, local changes, or the exact build/test workflow make build then ./urgentry version

Docker

# run with Docker
docker pull ghcr.io/urgentry/urgentry:latest
docker run -p 8080:8080 -v urgentry-data:/data \\
  ghcr.io/urgentry/urgentry:latest serve

Build from source

# build from source
git clone https://github.com/urgentry/urgentry.git
cd urgentry/apps/urgentry
make build
./urgentry version
./urgentry serve