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.


Open-source API development ecosystem
Add your server credentials to Server Compass
Choose from our template library
Fill in settings and click Deploy
Use the Hoppscotch template in Server Compass to deploy a self-hosted API development workspace with PostgreSQL on your VPS, then verify the Hoppscotch web app in a browser.
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 Hoppscotch in the Server Compass template catalog.

Choose the Hoppscotch template. Server Compass fills the Hoppscotch service, migration job, PostgreSQL service, public URL settings, JWT secret, session secret, data encryption key, and database password.

Confirm the app name and compose services. In this run, the app was named hoppscotch-demo and used host port 3000.

Review the generated environment values, keep generated secrets masked, confirm the public URL and WebSocket URL match the resolved port, and click Deploy Now.

Keep the deployment modal open while Server Compass uploads the compose file, pulls the Hoppscotch and PostgreSQL images, starts the containers, and verifies the stack.

After deployment finishes, return to the Apps tab and confirm the Hoppscotch app is marked Running with its application URL available.

Click Open Application or open the application URL in a browser. The Hoppscotch web app confirms the deployed API workspace is reachable and ready for final setup.

It deploys Hoppscotch in AIO subpath mode with a one-shot Prisma migration job, PostgreSQL 16, generated JWT/session/data-encryption secrets, and a public URL that matches the resolved host port.
The tutorial used host port 3000, which maps to the Hoppscotch web UI on container port 3000.
A fresh Hoppscotch deployment is considered reachable when the web app loads. Account creation, auth providers, teams, and collections are environment-specific.
No. The deployment guide should live on the Hoppscotch template detail page and be linked from the reusable template deployment docs page.
Want full control? Here's how to deploy Hoppscotch yourself using Docker Compose.
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/hoppscotch
cd ~/apps/hoppscotchCreate a new docker-compose.yml file and paste this configuration:
services:
hoppscotch:
image: hoppscotch/hoppscotch:latest
ports:
- "3000:3000"
environment:
- DATABASE_URL=postgresql://hoppscotch:<your-db-password>@db:5432/hoppscotch
- JWT_SECRET=<your-jwt-secret>
- SESSION_SECRET=<your-session-secret>
restart: unless-stopped
depends_on:
- db
db:
image: postgres:16-alpine
environment:
- POSTGRES_USER=hoppscotch
- POSTGRES_PASSWORD=<your-db-password>
- POSTGRES_DB=hoppscotch
volumes:
- postgres_data:/var/lib/postgresql/data
restart: unless-stopped
volumes:
postgres_data:
PORTHost port(default: 3000)JWT_SECRETJWT secretSESSION_SECRETSession secretDB_PASSWORDDB passwordStart 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 3000/tcp
sudo ufw reload
# Access your app at:
# http://your-server-ip:3000Skip the terminal and deploy Hoppscotch with a visual interface. Configure everything with clicks, not commands.
After deploying Hoppscotch with Server Compass, complete these steps to finish setup
Create account
Start testing APIs
Need help? Check out our documentation for detailed guides.
Common questions about self-hosting Hoppscotch
Simply download Server Compass, connect to your VPS, and select Hoppscotch from the templates list. Fill in the required configuration and click Deploy. The entire process takes under 3 minutes.
Hoppscotch 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 Hoppscotch backup and restore procedures.
Server Compass makes updates easy. Simply click the Update button in your deployment dashboard, and the latest Hoppscotch image will be pulled and deployed with zero downtime.
Hoppscotch 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.

Open-source backend in a single file with realtime database, auth, and file storage

Open-source backend-as-a-service - self-hosted Firebase alternative

Open-source backend framework with dashboard

Full Supabase self-hosted with Kong, GoTrue Auth, Realtime, and Studio
Download Server Compass and deploy Hoppscotch to your VPS in under 3 minutes. No Docker expertise required.
Download Server Compass