Redis Commander

Redis Commander - Web management tool for Redis

8081
Default Port
1
Services
6.5/20
Complexity
Low
Memory Usage
Configuration

Installation Command

blastdock init redis-commander

Template Overview

Everything you need to deploy Redis-commander with BlastDock

Quick Deploy

One command deployment

Secure

Production-ready security

Configurable

Customizable settings

Scalable

Ready to scale up

What's Included

Redis-commander
rediscommander/redis-commander:latest
Categories
Other
Resource Requirements
CPU: Low, Memory: Low

Quick Commands

blastdock init Initialize new project
blastdock deploy Deploy the application
blastdock status Check deployment status
blastdock logs View application logs

Quick Installation

Get Redis-commander up and running in minutes with our one-click installation.

BlastDock Installation

First, install BlastDock using pip (recommended):

Terminal
pip install blastdock

Then deploy Redis-commander with:

Terminal
blastdock init redis-commander

Interactive mode:

Terminal
blastdock init redis-commander -i

What's Included

Redis-commander
Container service

BlastDock Commands

blastdock templates List available templates
blastdock status project Check deployment status
blastdock logs project View application logs
blastdock stop project Stop deployment

Configuration Options

Customize your Redis-commander installation with these configuration options.

3
Required Fields
0
Optional Fields
0
Auto-Generated Passwords

Port

Web interface port

port
Default: 8081
Required: Yes

Redis Host

Redis host

string
Default: redis
Required: Yes

Redis Port

Redis port

string
Default: 6379
Required: Yes

Docker Compose

Complete Docker Compose configuration for Redis-commander deployment.

1
Services
0
Volumes
1
Networks
1
Exposed Ports
docker-compose.yml
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