Venatum / bull-board-docker

Docker image for bull-board
https://hub.docker.com/r/venatum/bull-board
MIT License
2 stars 2 forks source link

feat: adds support for sentinel #156

Closed sfranke closed 1 month ago

sfranke commented 1 month ago

🚀 Fix #155 - feature request: support for redis sentinel

This PR adds necessary changes for a sentinel configuration. This allows the users to connect via a redis sentinel rather than a single redis instance.

📦 What's in the box?

🤖 How to test it?

⚠️ WARNING!

🎉 Links useful

I used the bitnami containers for testing:

docker run -d --name redis-server \
    -e ALLOW_EMPTY_PASSWORD=yes \
    -p 6379:6379 \
    bitnami/redis:latest

docker run -it --rm \
    -e REDIS_MASTER_HOST=localhost \
    -p 26379:26379 \
    bitnami/redis-sentinel:latest
Venatum commented 1 month ago

Hello, Thanks for this PR, I'll do my best to make it available as soon as possible. I'm going to merge it into another PR so that I can add tests.