Merge pull request #6914 from ShadowArcanist/shadow/new-service-redisinsight

feat(service): add Redis Insight
This commit is contained in:
Andras Bacsai 2025-10-22 21:39:15 +02:00 committed by GitHub
commit cb4c26007d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 31 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 4 KiB

View file

@ -0,0 +1,31 @@
# documentation: https://redis.io/docs/latest/operate/redisinsight/
# slogan: Redis Insight lets you do both GUI- and CLI-based interactions in a fully-featured desktop GUI client.
# category: database,observability,developer-tools
# tags: redis,gui,database,monitoring,analytics
# logo: svgs/redisinsight.png
# port: 5540
services:
redisinsight:
image: 'redis/redisinsight:2.70' # Released on Jul 11, 2025
environment:
- SERVICE_URL_REDISINSIGHT_5540
- RI_APP_HOST=0.0.0.0
- RI_APP_PORT=5540
- 'RI_ENCRYPTION_KEY=${SERVICE_PASSWORD_RI_ENCRYPTION_KEY}'
- 'RI_LOG_LEVEL=${RI_LOG_LEVEL:-info}'
- 'RI_FILES_LOGGER=${RI_FILES_LOGGER:-true}'
- 'RI_STDOUT_LOGGER=${RI_STDOUT_LOGGER:-true}'
volumes:
- 'redis_insight_data:/data'
healthcheck:
test:
- CMD
- wget
- '--spider'
- 'http://localhost:5540'
interval: 10s
retries: 3
timeout: 10s
start_period: 10s