Redis Commander - Web management tool for Redis
Everything you need to deploy Redis-commander with BlastDock
One command deployment
Production-ready security
Customizable settings
Ready to scale up
blastdock init
Initialize new project
blastdock deploy
Deploy the application
blastdock status
Check deployment status
blastdock logs
View application logs
Get Redis-commander up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Redis-commander with:
blastdock init redis-commander
Interactive mode:
blastdock init redis-commander -i
blastdock templates
List available templates
blastdock status project
Check deployment status
blastdock logs project
View application logs
blastdock stop project
Stop deployment
Customize your Redis-commander installation with these configuration options.
Web interface port
Redis host
Redis port
Complete Docker Compose configuration for Redis-commander deployment.
version: '3.8'
services:
redis-commander:
image: rediscommander/redis-commander:latest
container_name: {{ project_name }}_redis_commander
restart: unless-stopped
ports:
- "8081"
environment:
- REDIS_HOSTS=local: {{ redis_host }}:{{ redis_port }}
networks:
- redis_commander_network
networks:
redis_commander_network:
driver: bridge