https://github.com/greensec/valkey-debian
A flexible distributed key-value database that is optimized for caching and other realtime workloads.
https://github.com/greensec/valkey-debian
build cache database deb debian debian-repository valkey
Last synced: 2 months ago
JSON representation
A flexible distributed key-value database that is optimized for caching and other realtime workloads.
- Host: GitHub
- URL: https://github.com/greensec/valkey-debian
- Owner: greensec
- License: mit
- Created: 2025-07-17T16:37:41.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2026-03-27T21:52:00.000Z (3 months ago)
- Last Synced: 2026-03-28T04:17:40.763Z (3 months ago)
- Topics: build, cache, database, deb, debian, debian-repository, valkey
- Language: Shell
- Homepage: https://greensec.github.io/valkey-debian/
- Size: 39.7 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Support: .github/supported-releases.txt
Awesome Lists containing this project
README
# Valkey Debian Packages
This repository contains the packaging configuration for automatically building Debian packages of [Valkey](https://github.com/valkey-io/valkey). Valkey is a flexible distributed key-value database that is optimized for caching and other realtime workloads.
## Repository Information
Pre-built packages are available at: [https://greensec.github.io/valkey-debian/](https://greensec.github.io/valkey-debian/)
## Supported Debian/Ubuntu Versions
### Debian
- bullseye (11)
- bookworm (12)
- trixie (13)
### Ubuntu
- jammy (22.04 LTS)
- noble (24.04 LTS)
### Automated Builds
This repository uses GitHub Actions to automatically build packages for all supported distributions.
### How to add this repository:
#### Automatically via script
```bash
wget -O- https://greensec.github.io/valkey-debian/add-repository.sh | bash
apt-get install valkey
```
The script auto-detects your distribution and codename from `/etc/os-release` and supports:
- Debian: `bullseye`, `bookworm`, `trixie`
- Ubuntu: `jammy`, `noble`
#### Manually
```bash
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 valkey
```
## Acknowledgements
This package is based on the work of the Valkey developers and the Debian Valkey team.
### Original Valkey Project
- [Valkey Official Website](https://valkey.io/)
- [GitHub Repository](https://github.com/valkey-io/valkey)