A modern, web-based Redis GUI explorer built with Next.js 15 and React 19. This Docker image provides a comprehensive interface for managing Redis databases with a focus on performance and user experience.
# Run Redis Explorer
docker run -d --name redis-explorer -p 3000:3000 ruanbarroso/redis-explorer:latest
# Access the application
open http://localhost:3000
# Start Redis server
docker run -d --name redis -p 6379:6379 redis:7-alpine
# Run Redis Explorer with link
docker run -d --name redis-explorer -p 3000:3000 --link redis:redis ruanbarroso/redis-explorer:latest
Connect to any Redis instance by configuring the connection in the web interface:
latest - Latest stable release (currently v1.16.1)1.16.1, 1.16.0, 1.15.2, etc. - Specific version releases| Variable | Default | Description |
|---|---|---|
PORT | 3000 | Port for the web server |
NODE_ENV | production | Node.js environment |
docker run -d \
--name redis-explorer \
-p 8080:8080 \
-e PORT=8080 \
ruanbarroso/redis-explorer:latest
Create a docker-compose.yml file:
version: '3.8'
services:
redis-explorer:
image: ruanbarroso/redis-explorer:latest
ports:
- "3000:3000"
depends_on:
- redis
redis:
image: redis:7-alpine
ports:
- "6379:6379"
Run with: docker-compose up -d
nextjs:1001)Cannot connect to Redis
Port already in use
# Use different port
docker run -d -p 3001:3000 ruanbarroso/redis-explorer:latest
Permission issues
# Check container logs
docker logs redis-explorer
MIT License - see LICENSEā for details.
Contributions are welcome! Please see our Contributing Guideā .
ā Star us on GitHub: https://github.com/ruanbarroso/redis-explorerā
Content type
Image
Digest
sha256:1a340dd85ā¦
Size
76.1 MB
Last updated
2 months ago
docker pull ruanbarroso/redis-explorer