This repository contains the packaging configuration for automatically building Debian packages of Valkey. Valkey is a flexible distributed key-value database that is optimized for caching and other realtime workloads.
Pre-built packages are available at: https://greensec.github.io/valkey-debian/
- bullseye (11)
- bookworm (12)
- trixie (13)
- jammy (22.04 LTS)
- noble (24.04 LTS)
This repository uses GitHub Actions to automatically build packages for all supported distributions.
wget -O- https://greensec.github.io/valkey-debian/add-repository.sh | bash
apt-get install valkeyThe script auto-detects your distribution and codename from /etc/os-release and supports:
- Debian:
bullseye,bookworm,trixie - Ubuntu:
jammy,noble
apt-get install wget ca-certificates
wget -O /usr/share/keyrings/greensec.github.io-valkey-debian.key https://greensec.github.io/valkey-debian/public.key
source /etc/os-release
echo "deb [signed-by=/usr/share/keyrings/greensec.github.io-valkey-debian.key] https://greensec.github.io/valkey-debian/repo ${VERSION_CODENAME} main" > /etc/apt/sources.list.d/valkey-debian.list
apt-get update && apt-get install valkeyThis package is based on the work of the Valkey developers and the Debian Valkey team.