Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,11 @@ The repository currently supports these message brokers:

- rabbitmq 3.8

[Redisinsight](https://redis.io/insight/) is available:

- Add `./redis/redisinsight.yml` to your `.env`
- Got to [redisinsight.${DOCKER_HOST_SUFFIX}.lph](https://redisinsight.${DOCKER_HOST_SUFFIX}.lph/) or [redisinsight.lph](https://redisinsight.lph/)

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.

## Troubleshooting
Expand Down
16 changes: 16 additions & 0 deletions redis/redisinsight.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
services:
redisinsight:
image: redis/redisinsight:latest
restart: unless-stopped
volumes:
- redisinsight:/data
networks:
- private
- public
labels:
caddy: 'redisinsight.lph, redisinsight.${DOCKER_HOST_SUFFIX:-local}'
caddy.tls: internal
caddy.reverse_proxy: "{{ upstreams 5540 }}"

volumes:
redisinsight: