feat(self-host/docker-compose): add option to use Valkey

Fixes #1228
This commit is contained in:
Gergő Móricz 2025-02-21 16:17:29 +01:00
parent 82adf81b15
commit bfe6a0ab32

View File

@ -78,7 +78,12 @@ services:
command: [ "pnpm", "run", "workers" ] command: [ "pnpm", "run", "workers" ]
redis: redis:
# NOTE: If you want to use Valkey (open source) instead of Redis (source available),
# uncomment the Valkey statement and comment out the Redis statement.
# Using Valkey with Firecrawl is untested and not guaranteed to work. Use with caution.
image: redis:alpine image: redis:alpine
# image: valkey/valkey:alpine
networks: networks:
- backend - backend
command: redis-server --bind 0.0.0.0 command: redis-server --bind 0.0.0.0