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.


Lightning-fast search engine with typo tolerance
Add your server credentials to Server Compass
Choose from our template library
Fill in settings and click Deploy
Use the Meilisearch template in Server Compass to deploy a fast full-text 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 Meilisearch in the Server Compass template catalog.

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

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

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

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

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

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

The Meilisearch REST API returned ready status from a curl request.
It deploys a Meilisearch container with a persistent data volume, HTTP API port, production mode, and generated master key.
The tutorial used host port 7700, which maps to Meilisearch HTTP API port 7700.
Meilisearch 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 Meilisearch template detail page and be linked from the reusable template deployment docs page.
Learn how to self-host Meilisearch with this hands-on deployment guide.
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/meilisearch
cd ~/apps/meilisearchCreate the Docker Compose configuration file with these contents:
services:
meilisearch:
image: getmeili/meilisearch:latest
ports:
- "7700:7700"
environment:
- MEILI_MASTER_KEY=<your-master-key>
- MEILI_ENV=production
volumes:
- meilisearch_data:/meili_data
restart: unless-stopped
volumes:
meilisearch_data:
PORTHost port(default: 7700)MASTER_KEYMaster 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 7700/tcp
sudo ufw reload
# Access your app at:
# http://your-server-ip:7700Let Server Compass handle the complexity. Deploy Meilisearch with a simple, intuitive interface.
After deploying Meilisearch with Server Compass, complete these steps to finish setup
Create indexes
Index your documents
Need help? Check out our documentation for detailed guides.
Common questions about self-hosting Meilisearch
Simply download Server Compass, connect to your VPS, and select Meilisearch from the templates list. Fill in the required configuration and click Deploy. The entire process takes under 3 minutes.
Meilisearch 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 Meilisearch backup and restore procedures.
Server Compass makes updates easy. Simply click the Update button in your deployment dashboard, and the latest Meilisearch image will be pulled and deployed with zero downtime.
Meilisearch 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 Meilisearch to your VPS in under 3 minutes. No Docker expertise required.
Download Server Compass