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.


AI-native vector database for semantic search and RAG applications
Add your server credentials to Server Compass
Choose from our template library
Fill in settings and click Deploy
Use the Weaviate template in Server Compass to deploy an AI-native vector database on your VPS, then verify the REST readiness 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 Weaviate in the Server Compass template catalog.

Choose the Weaviate template. Server Compass fills the Weaviate container, persistent data volume, REST port, gRPC port, anonymous access setting, and vectorizer configuration.

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

Review the generated environment values, confirm the REST and gRPC ports are available, and click Deploy Now.

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

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

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

The Weaviate REST API returned ready status from a curl request.
It deploys a Weaviate container with a persistent data volume, REST API port, gRPC port, anonymous access enabled, and vectorizer set to none.
The tutorial used host port 8080, which maps to Weaviate REST API port 8080. The template also exposes a gRPC port.
Weaviate exposes a service API rather than a conventional browser app. The tutorial verifies it with the REST readiness endpoint.
No. The deployment guide should live on the Weaviate template detail page and be linked from the reusable template deployment docs page.
Deploy Weaviate the traditional way with SSH and Docker Compose.
Start by opening a terminal window and connecting to your VPS via SSH.
# 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
Create a dedicated space for your application deployment.
# Create and navigate to project directory
mkdir -p ~/apps/weaviate
cd ~/apps/weaviateCreate a docker-compose.yml file with the following configuration:
services:
weaviate:
image: semitechnologies/weaviate:latest
ports:
- "8080:8080"
- "50051:50051"
environment:
- QUERY_DEFAULTS_LIMIT=25
- AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED=true
- PERSISTENCE_DATA_PATH=/var/lib/weaviate
- DEFAULT_VECTORIZER_MODULE=none
- CLUSTER_HOSTNAME=node1
volumes:
- weaviate_data:/var/lib/weaviate
restart: unless-stopped
volumes:
weaviate_data:
PORTREST API port(default: 8080)GRPC_PORTgRPC port(default: 50051)Deploy the stack and monitor the startup process.
# Spin up containers
docker compose up -d
# Verify deployment
docker compose ps
# Check logs for errors
docker compose logs -fSet up firewall rules to permit incoming connections.
# Allow the application port through firewall
sudo ufw allow 8080/tcp
sudo ufw reload
# Access your app at:
# http://your-server-ip:8080Server Compass makes deploying Weaviate effortless. Visual setup, one-click deploy, done.
After deploying Weaviate with Server Compass, complete these steps to finish setup
Access REST API
Create schema and classes
Configure vectorizers if needed
Need help? Check out our documentation for detailed guides.
Common questions about self-hosting Weaviate
Simply download Server Compass, connect to your VPS, and select Weaviate from the templates list. Fill in the required configuration and click Deploy. The entire process takes under 3 minutes.
Weaviate requires a minimum of 1024MB RAM. We recommend a VPS with at least 2048MB 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 Weaviate backup and restore procedures.
Server Compass makes updates easy. Simply click the Update button in your deployment dashboard, and the latest Weaviate image will be pulled and deployed with zero downtime.
Weaviate 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 Weaviate to your VPS in under 3 minutes. No Docker expertise required.
Download Server Compass