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


Fast, typo-tolerant search engine optimized for instant search
Add your server credentials to Server Compass
Choose from our template library
Fill in settings and click Deploy
Use the Typesense template in Server Compass to deploy a fast typo-tolerant search engine on your VPS, then verify the health endpoint.
Select the tutorial-vps 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 Typesense in the Server Compass template catalog.

Choose the Typesense template. Server Compass fills the Typesense container, persistent data volume, HTTP API port, production mode, and generated API key.

Confirm the app name and compose service. In this run, the app was named typesense-demo and used host port 8108.

Review the generated environment values, confirm the REST and API keys are available, and click Deploy Now.

Keep the deployment modal open while Server Compass uploads the compose file, pulls the Typesense image, starts the container, and verifies the stack.

After deployment finishes, return to the Apps tab and confirm the Typesense app is marked Running with the database port available.

Open the app detail view and verify the running Typesense container. In this tutorial run, the health endpoint reported that Typesense was ready.

The Typesense REST API returned ready status from a curl request.
It deploys a Typesense container with a persistent data volume, HTTP API port, production mode, and generated API key.
The tutorial used host port 8108, which maps to Typesense HTTP API port 8108.
Typesense exposes a service API rather than a conventional browser app. The tutorial verifies it with the health endpoint.
No. The deployment guide should live on the Typesense template detail page and be linked from the reusable template deployment docs page.
Deploy Typesense the traditional way with SSH and Docker Compose.
Launch your preferred terminal and connect to your VPS using SSH.
# Log into your server
ssh root@<your-server-ip>
# If using key-based auth
ssh -i ~/.ssh/my-key root@<your-server-ip>First time? Docker not installed? Run: curl -fsSL https://get.docker.com | sh
Prepare a directory for your application files and configuration.
# Create and navigate to project directory
mkdir -p ~/apps/typesense
cd ~/apps/typesenseCreate the Docker Compose configuration file with these contents:
services:
typesense:
image: typesense/typesense:0.25.2
ports:
- "8108:8108"
environment:
- TYPESENSE_API_KEY=<your-api-key>
- TYPESENSE_DATA_DIR=/data
volumes:
- typesense_data:/data
restart: unless-stopped
volumes:
typesense_data:
PORTHost port(default: 8108)API_KEYAPI keyLaunch the application stack using Docker Compose.
# Deploy the application
docker compose up -d
# Check container health
docker compose ps
# Monitor logs
docker compose logs -f --tail=100Enable external access by opening the necessary port.
# Allow the application port through firewall
sudo ufw allow 8108/tcp
sudo ufw reload
# Access your app at:
# http://your-server-ip:8108Server Compass makes deploying Typesense effortless. Visual setup, one-click deploy, done.
After deploying Typesense with Server Compass, complete these steps to finish setup
Create collections
Index documents
Need help? Check out our documentation for detailed guides.
Common questions about self-hosting Typesense
Simply download Server Compass, connect to your VPS, and select Typesense from the templates list. Fill in the required configuration and click Deploy. The entire process takes under 3 minutes.
Typesense requires a minimum of 256MB 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 Typesense backup and restore procedures.
Server Compass makes updates easy. Simply click the Update button in your deployment dashboard, and the latest Typesense image will be pulled and deployed with zero downtime.
Typesense 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 Typesense to your VPS in under 3 minutes. No Docker expertise required.
Download Server Compass