Download
You can obtain various artifacts of VAST along the CD pipeline.
Source Code
Get the source code by cloning our Git repository or downloading an archive.
Git
Use git
to clone our repository hosted on GitHub:
git clone --recursive https://github.com/tenzir/vast
You can check out the stable
branch to get the latest released version:
cd vast
git checkout stable
Archive
Download a zip Archive of the latest release or the current development version:
Packages
We offer pre-built versions of VAST containing a statically linked binary, for the latest release and the current development version.
Generic Linux
Debian
We also offer prebuilt statically linked binaries for every Git commit to the
master
branch.
version="$(git describe --abbrev=10 --long --dirty --match='v[0-9]*')"
curl -fsSL "https://storage.googleapis.com/tenzir-public-data/vast-static-builds/vast-${version}-linux-static.tar.gz"
Nix
Our repository contains a flake.nix
that provides a VAST as an app, you can
use vast = "github:tenzir/vast/stable"
as an input in your own flake or just
try it out with:
nix run github:tenzir/vast/stable
Images
Our CI builds Docker images for the latest release and the current development version.
Docker
You can download pre-built Docker images from Docker Hub.
Read our Docker instructions for more details on using Docker.