Valkey
Valkey is a Redis-compatible in-memory data store. It runs without authentication by default.
Connection
Section titled “Connection”From inside a project container (using the network alias):
redis-cli -h valkeyFrom the host machine (via the exposed port):
redis-cli -h 127.0.0.1 -p 6379Note: Valkey is fully Redis-compatible. Use the standard
redis-cliclient to connect.
Data Persistence
Section titled “Data Persistence”Data survives container restarts and dde updates. Each version has its own isolated data directory.
Configuration
Section titled “Configuration”Declare in .dde/config.yml:
services: - name: valkeyOr with an explicit version:
services: - name: valkey version: "8"See custom-versions.md for details on running non-default versions.