Sign inSign up

sochimab/redis-proxy

By sochimab

Updated about 1 year ago

Lightweight Redis proxy that auto-authenticates to external Redis servers.

Image
Networking
Databases & storage
0

223

sochimab/redis-proxy repository overview

Overview

This image provides a lightweight Redis authentication proxy. It exposes a local Redis-compatible endpoint (default port 6379) and transparently forwards traffic to an external Redis server such as Redis Cloud.

The proxy automatically sends the AUTH command upstream using credentials from environment variables, so clients can connect without handling passwords directly.


How to run

docker run -d \
  -p 6379:6379 \
  -e REDIS_HOST=your.redis.host \
  -e REDIS_PORT=12345 \
  -e REDIS_USER=default \
  -e REDIS_PASS=yourpassword \
  sochimab/redis-proxy:latest

Once running, you can connect using a standard Redis client:

redis-cli -h 127.0.0.1 -p 6379 ping
# -> PONG

Use cases

  • Drop-in replacement for redis:alpine in development or containerized stacks.
  • Provide a local Redis endpoint even when the actual server is remote.

Tag summary

Content type

Image

Digest

sha256:12129cae7

Size

43.6 MB

Last updated

about 1 year ago

docker pull sochimab/redis-proxy