Redash

Redash - Connect to any data source and visualize

5000
Default Port
5
Services
22.0/20
Complexity
High
Memory Usage
Configuration

Installation Command

blastdock init redash

Template Overview

Everything you need to deploy Redash with BlastDock

Quick Deploy

One command deployment

Secure

Production-ready security

Configurable

Customizable settings

Scalable

Ready to scale up

What's Included

Server
redash/redash:latest
Scheduler
redash/redash:latest
Worker
redash/redash:latest
Redis
redis:latest
Postgres
postgres:13
Categories
Database
Security Features
Password Protection
Resource Requirements
CPU: High, Memory: High , Storage Required

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 Redash up and running in minutes with our one-click installation.

BlastDock Installation

First, install BlastDock using pip (recommended):

Terminal
pip install blastdock

Then deploy Redash with:

Terminal
blastdock init redash

Interactive mode:

Terminal
blastdock init redash -i

What's Included

Server
Container service
Scheduler
Container service
Worker
Container service
Redis
Container service
Postgres
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 Redash installation with these configuration options.

3
Required Fields
0
Optional Fields
2
Auto-Generated Passwords

Web Port

Web interface port

port
Default: 5000
Required: Yes

Db Password

Database password

password
Default: ••••••••••••
Required: Yes
Security: Auto-generated

Cookie Secret

Cookie secret

password
Default: ••••••••••••
Required: Yes
Security: Auto-generated

Docker Compose

Complete Docker Compose configuration for Redash deployment.

5
Services
2
Volumes
1
Networks
1
Exposed Ports
docker-compose.yml
version: '3.8'

services:
  postgres:
    image: postgres:13
    container_name: {{ project_name }}_postgres
    restart: unless-stopped
    environment:
      0: POSTGRES_PASSWORD={{ db_password }}
      1: POSTGRES_USER=redash
      2: POSTGRES_DB=redash
    volumes:
      - /var/lib/postgresql/data
    networks:
      - redash_network

  redis:
    image: redis:latest
    container_name: {{ project_name }}_redis
    restart: unless-stopped
    volumes:
      - /data
    networks:
      - redash_network

  server:
    image: redash/redash:latest
    container_name: {{ project_name }}_server
    restart: unless-stopped
    depends_on:
      - postgres
      - redis
    ports:
      - "5000"
    environment:
      0: REDASH_COOKIE_SECRET={{ cookie_secret }}
      - REDASH_DATABASE_URL=postgresql: //redash:{{ db_password }}@postgres/redash
      - REDASH_REDIS_URL=redis: //redis:6379/0
    networks:
      - redash_network

  worker:
    image: redash/redash:latest
    container_name: {{ project_name }}_worker
    restart: unless-stopped
    depends_on:
      - server
    environment:
      0: REDASH_COOKIE_SECRET={{ cookie_secret }}
      - REDASH_DATABASE_URL=postgresql: //redash:{{ db_password }}@postgres/redash
      - REDASH_REDIS_URL=redis: //redis:6379/0
    networks:
      - redash_network

  scheduler:
    image: redash/redash:latest
    container_name: {{ project_name }}_scheduler
    restart: unless-stopped
    depends_on:
      - server
    environment:
      0: REDASH_COOKIE_SECRET={{ cookie_secret }}
      - REDASH_DATABASE_URL=postgresql: //redash:{{ db_password }}@postgres/redash
      - REDASH_REDIS_URL=redis: //redis:6379/0
    networks:
      - redash_network

volumes:
  postgres_data:
    driver: local

  redis_data:
    driver: local

networks:
  redash_network:
    driver: bridge