mirror of
https://github.com/immich-app/immich.git
synced 2025-06-22 17:04:00 +02:00
feat(server): redis sentinel support (#2141)
* feat(server): redis sentinel initial support * feat(server): Lint fixes * Include example for Redis Sentinel. * Address PR comments
This commit is contained in:
parent
51785a1ead
commit
23e4449f27
2 changed files with 27 additions and 7 deletions
docker
|
@ -16,6 +16,11 @@ DB_DATABASE_NAME=immich
|
|||
|
||||
REDIS_HOSTNAME=immich_redis
|
||||
|
||||
# REDIS_URL will be used to pass custom options to ioredis.
|
||||
# Example for Sentinel
|
||||
# {"sentinels":[{"host":"redis-sentinel-node-0","port":26379},{"host":"redis-sentinel-node-1","port":26379},{"host":"redis-sentinel-node-2","port":26379}],"name":"redis-sentinel"}
|
||||
# REDIS_URL=ioredis://eyJzZW50aW5lbHMiOlt7Imhvc3QiOiJyZWRpcy1zZW50aW5lbDEiLCJwb3J0IjoyNjM3OX0seyJob3N0IjoicmVkaXMtc2VudGluZWwyIiwicG9ydCI6MjYzNzl9XSwibmFtZSI6Im15bWFzdGVyIn0=
|
||||
|
||||
# Optional Redis settings:
|
||||
|
||||
# Note: these parameters are not automatically passed to the Redis Container
|
||||
|
@ -24,6 +29,7 @@ REDIS_HOSTNAME=immich_redis
|
|||
|
||||
# REDIS_PORT=6379
|
||||
# REDIS_DBINDEX=0
|
||||
# REDIS_USERNAME=
|
||||
# REDIS_PASSWORD=
|
||||
# REDIS_SOCKET=
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue