Skip to content

Commit 8592f72

Browse files
feat: add RedisInsight (#53)
1 parent e8aab25 commit 8592f72

2 files changed

Lines changed: 21 additions & 0 deletions

File tree

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,11 @@ The repository currently supports these message brokers:
6868

6969
- rabbitmq 3.8
7070

71+
[Redisinsight](https://redis.io/insight/) is available:
72+
73+
- Add `./redis/redisinsight.yml` to your `.env`
74+
- Got to [redisinsight.${DOCKER_HOST_SUFFIX}.lph](https://redisinsight.${DOCKER_HOST_SUFFIX}.lph/) or [redisinsight.lph](https://redisinsight.lph/)
75+
7176
An optional watchtower service is available to update docker images automatically. Add `watchtower.yml` to `COMPOSE_FILE` variable and set a schedule with `WATCHTOWER_SCHEDULE` variable in your `.env` file (default is `0 0 17 * * *`). You should also [login to your docker hub account](https://docs.docker.com/security/for-developers/access-tokens/#create-an-access-token) to prevent rate limit issues.
7277

7378
## Troubleshooting

redis/redisinsight.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
services:
2+
redisinsight:
3+
image: redis/redisinsight:latest
4+
restart: unless-stopped
5+
volumes:
6+
- redisinsight:/data
7+
networks:
8+
- private
9+
- public
10+
labels:
11+
caddy: 'redisinsight.lph, redisinsight.${DOCKER_HOST_SUFFIX:-local}'
12+
caddy.tls: internal
13+
caddy.reverse_proxy: "{{ upstreams 5540 }}"
14+
15+
volumes:
16+
redisinsight:

0 commit comments

Comments
 (0)