Skip to content

Conversation

ShadowArcanist
Copy link
Member

RedisInsight

RedisInsight is a graphical user interface (GUI) developed by Redis for managing and visualizing Redis databases.

image

If you're a regular Coolify user and want to deploy this service before this PR gets merged into Coolify, just follow these steps:

  1. Create a new resource in Coolify and choose Docker Compose Empty.
  2. It will show an input field where you can paste the Docker Compose content from this PR (I’ll include it below so you can easily copy and paste).
  3. After that, just click the deploy button and visit the URL.

Note

  • No need to change any environment variables — it works out of the box.
  • Also, this service doesn't have any built-in authentication. I checked their docs, and there's no support for auth. If you want to restrict access, you can use Traefik's basic auth feature or any other method you prefer to secure the service.
# 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

Docs PR

  • WIP

@ShadowArcanist ShadowArcanist added ⚙️ Service Issues requesting or PRs adding/fixing service templates. Ready to merge labels Oct 17, 2025
Copy link
Contributor

Hi @ShadowArcanist! 👋

It appears to us that you are either adding a new service or making changes to an existing one.
We kindly ask you to also review and update the Coolify Documentation to include this new service or it's new configuration needs.
This will help ensure that our documentation remains accurate and up-to-date for all users.

Coolify Docs Repository: https://github.com/coollabsio/coolify-docs
How to Contribute a new Service to the Docs: https://coolify.io/docs/get-started/contribute/service#adding-a-new-service-template-to-the-coolify-documentation

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Ready to merge ⚙️ Service Issues requesting or PRs adding/fixing service templates.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant