Redis cache server
Everything you need to deploy Redis 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 up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Redis with:
blastdock init redis
Interactive mode:
blastdock init redis -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 installation with these configuration options.
Redis port
Redis password (optional)
Max memory (e.g., 256mb)
Complete Docker Compose configuration for Redis deployment.
version: '3.8'
services:
redis:
image: redis:7-alpine
container_name: {{ project_name }}_redis
restart: unless-stopped
ports:
- "6379"
volumes:
- /data
- /usr/local/etc/redis/redis.conf:ro
networks:
- redis_network
volumes:
redis_data:
driver: local
networks:
redis_network:
driver: bridge