[GH-ISSUE #965] Redis #15533

Closed
opened 2026-07-14 22:45:57 -05:00 by GiteaMirror · 1 comment
Owner

Originally created by @deyoyk on GitHub (Jun 28, 2026).
Original GitHub issue: https://github.com/Dokploy/templates/issues/965

<html> <html><head></head>

Template Request

Template Name

Redis

Description

I'd like to request an official Redis template for the Dokploy Templates repository. Redis is one of the most commonly used services for caching, sessions, queues, rate limiting, and pub/sub, so having an official template would make deployments much easier.

Why should this template be added?

Right now, users have to create their own Docker Compose file or copy one from another source whenever they need Redis. An official template would make it much quicker to get started.

It would:

  • Save time

  • Keep deployments consistent

  • Help new users get started faster

  • Provide a trusted default configuration

Docker Image

redis:8

Environment Variables

Variable | Description -- | -- REDIS_PASSWORD | Password for Redis (optional)

Example Compose

services:
  redis:
    image: redis:8
    restart: unless-stopped
    command: >
      sh -c '
      if [ -n "$$REDIS_PASSWORD" ]; then
        exec redis-server --requirepass "$$REDIS_PASSWORD";
      else
        exec redis-server;
      fi
      '
environment:
  REDIS_PASSWORD: ""

volumes:
  - redis_data:/data

volumes:
redis_data:

Documentation

https://hub.docker.com/_/redis

Additional Notes

Redis is used in a huge number of applications for caching, queues, sessions, and real-time features. Having an official template would save users from creating the same setup repeatedly and would be a useful addition to the existing template collection.

</html>

</html>
Originally created by @deyoyk on GitHub (Jun 28, 2026). Original GitHub issue: https://github.com/Dokploy/templates/issues/965 <html> <body> <!--StartFragment--><html><head></head><body><h1>Template Request</h1><h2>Template Name</h2><p>Redis</p><h2>Description</h2><p>I'd like to request an official Redis template for the Dokploy Templates repository. Redis is one of the most commonly used services for caching, sessions, queues, rate limiting, and pub/sub, so having an official template would make deployments much easier.</p><h2>Why should this template be added?</h2><p>Right now, users have to create their own Docker Compose file or copy one from another source whenever they need Redis. An official template would make it much quicker to get started.</p><p>It would:</p><ul><li><p>Save time</p></li><li><p>Keep deployments consistent</p></li><li><p>Help new users get started faster</p></li><li><p>Provide a trusted default configuration</p></li></ul><h2>Docker Image</h2><pre><code class="language-text">redis:8 </code></pre><h2>Environment Variables</h2> Variable | Description -- | -- REDIS_PASSWORD | Password for Redis (optional) <h2>Example Compose</h2><pre><code class="language-yaml">services: redis: image: redis:8 restart: unless-stopped command: &gt; sh -c ' if [ -n "$$REDIS_PASSWORD" ]; then exec redis-server --requirepass "$$REDIS_PASSWORD"; else exec redis-server; fi ' environment: REDIS_PASSWORD: "" volumes: - redis_data:/data volumes: redis_data: </code></pre><h2>Documentation</h2><p><a href="https://hub.docker.com/_/redis">https://hub.docker.com/_/redis</a></p><h2>Additional Notes</h2><p>Redis is used in a huge number of applications for caching, queues, sessions, and real-time features. Having an official template would save users from creating the same setup repeatedly and would be a useful addition to the existing template collection.</p></body></html><!--EndFragment--> </body> </html>
Author
Owner

@Siumauricio commented on GitHub (Jul 7, 2026):

Redis is available natively in Dokploy as a first-class database service (Create Service → Database → Redis), so it doesn't need a compose template here. There's also a valkey template in this repo if you prefer the OSS fork. Thanks!

<!-- gh-comment-id:4909447991 --> @Siumauricio commented on GitHub (Jul 7, 2026): Redis is available natively in Dokploy as a first-class database service (Create Service → Database → Redis), so it doesn't need a compose template here. There's also a `valkey` template in this repo if you prefer the OSS fork. Thanks!
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/templates#15533