Lightweight Redis proxy that auto-authenticates to external Redis servers.
223
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.
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
redis:alpine in development or containerized stacks.Content type
Image
Digest
sha256:12129cae7…
Size
43.6 MB
Last updated
about 1 year ago
docker pull sochimab/redis-proxy