Open the server Apps tab
Select your VPS, open the Apps tab, and start a new app deployment. Keep sensitive server details hidden before capturing or sharing screenshots.


Redis cache with optional persistence
Add your server credentials to Server Compass
Choose from our template library
Fill in settings and click Deploy
Use the Redis template in Server Compass to deploy a persistent Redis cache on your VPS, then verify the service with a safe connection test.
Select your VPS, open the Apps tab, and start a new app deployment. Keep sensitive server details hidden before capturing or sharing screenshots.

Click New App and choose the template deployment path so Server Compass can load the built-in catalog.

Use the template picker search to find Redis in the Server Compass template catalog.

Choose the Redis template. Server Compass fills the Docker image, port mapping, persistent volume, and database connection metadata.

Confirm the app name and host port. In the pilot run, the app was named redis-demo and the host port was changed to 16379 to avoid conflicts with any existing Redis service.

Review the final settings, click Deploy Now, and let Server Compass create the Redis container and persistent volume on the VPS.

Keep the deployment modal open while Server Compass prepares the project, pulls the Docker image, starts the container, and checks the service status.

After deployment finishes, return to the Apps tab and confirm the Redis app is marked Running with its database connection section available.

Open the Redis app details, expand Database Connection, and click Test. A PONG response confirms Server Compass can reach the deployed Redis service without revealing the server IP.

Server Compass showed one running Redis container, port 16379 mapped to 6379, and the Database Connection test returned PONG.
It deploys the official Redis Docker image with a persistent data volume and a Server Compass database connection entry.
The pilot used host port 16379 mapped to Redis port 6379 to avoid conflicts with any existing Redis service.
Only expose Redis when you understand the security tradeoff. For production, restrict access, use authentication, and prefer private app-to-database connections when possible.
No. The deployment guide should live on the Redis template detail page and be linked from the reusable template deployment docs page.
Set up Redis yourself using Docker Compose and the command line.
Initiate a secure shell connection to your server using the command below.
# Connect to your VPS
ssh root@your-server-ip
# Or with a specific SSH key
ssh -i ~/.ssh/your-key root@your-server-ipFirst time? Docker required! Install it with: curl -fsSL https://get.docker.com | sh
Organize your deployment by creating a dedicated project folder.
# Create and navigate to project directory
mkdir -p ~/apps/redis
cd ~/apps/redisCreate a new docker-compose.yml file and paste this configuration:
services:
redis:
image: redis:7-alpine
ports:
- "6379:6379"
volumes:
- redis_data:/data
command: redis-server --appendonly yes
restart: unless-stopped
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 10s
timeout: 5s
retries: 5
volumes:
redis_data:
PORTHost port to expose(default: 6379)Start the services and tail the logs to verify startup.
# Spin up containers
docker compose up -d
# Verify deployment
docker compose ps
# Check logs for errors
docker compose logs -fOpen the required port in your firewall to allow access.
# Allow the application port through firewall
sudo ufw allow 6379/tcp
sudo ufw reload
# Access your app at:
# http://your-server-ip:6379No terminal needed. Deploy Redis through a visual dashboard with automatic configuration.
After deploying Redis with Server Compass, complete these steps to finish setup
Test Redis connection
Configure password authentication (strongly recommended)
Set up persistence configuration (RDB/AOF)
Configure maxmemory and eviction policies
Set up monitoring and alerts
Consider setting up Redis Sentinel for high availability
Need help? Check out our documentation for detailed guides.
Common questions about self-hosting Redis
Simply download Server Compass, connect to your VPS, and select Redis from the templates list. Fill in the required configuration and click Deploy. The entire process takes under 3 minutes.
Redis requires a minimum of 64MB RAM. We recommend a VPS with at least 1024MB RAM for optimal performance. Any modern Linux server with Docker support will work.
Yes! Server Compass provides volume mapping that allows you to import existing data. You can also use standard Redis backup and restore procedures.
Server Compass makes updates easy. Simply click the Update button in your deployment dashboard, and the latest Redis image will be pulled and deployed with zero downtime.
Redis is open-source software. You only pay for your VPS hosting (typically $5-20/month) and optionally Server Compass ($29 one-time). No subscription fees or per-seat pricing.
Download Server Compass and deploy Redis to your VPS in under 3 minutes. No Docker expertise required.
Download Server Compass