[searxng] Replace redis by valkey

This commit is contained in:
Viyurz 2024-08-07 12:49:57 +02:00
parent 8e107a0ce6
commit ee29b6a834
Signed by: Viyurz
SSH key fingerprint: SHA256:IskOHTmhHSJIvAt04N6aaxd5SZCVWW1Guf9tEcxIMj8
3 changed files with 9 additions and 14 deletions

View file

@ -125,7 +125,7 @@ users:
mailserver: 8
postgres: 70
searxng: 977
searxng_redis: 999
searxng_valkey: 999
stump: 1005
synapse: 991
syncthing: 1001

View file

@ -18,7 +18,7 @@ ui:
query_in_title: true
redis:
url: redis://searxng-redis:6379/0
url: redis://searxng-valkey:6379/0
enabled_plugins:
- 'Basic Calculator'

View file

@ -1,12 +1,12 @@
services:
redis:
container_name: searxng-redis
image: docker.io/library/redis:alpine
valkey:
container_name: searxng-valkey
image: docker.io/valkey/valkey:7-alpine
restart: always
user: {{ users['searxng_redis'] }}:{{ users['searxng_redis'] }}
command: redis-server --save 30 1 --loglevel warning
user: {{ users['searxng_valkey'] }}:{{ users['searxng_valkey'] }}
command: valkey-server --save 30 1 --loglevel warning
volumes:
- redis:/data
- valkey:/data
searxng:
container_name: searxng
@ -20,11 +20,6 @@ services:
volumes:
- ./settings.yml:/etc/searxng/settings.yml
- ./limiter.toml:/etc/searxng/limiter.toml
logging:
driver: "json-file"
options:
max-size: "1m"
max-file: "1"
volumes:
redis:
valkey: