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.


Open-source backend framework with dashboard
Add your server credentials to Server Compass
Choose from our template library
Fill in settings and click Deploy
Use the Parse Server template in Server Compass to deploy a self-hosted backend-as-a-service with MongoDB and Parse Dashboard on your VPS, then verify the Parse Dashboard web UI in a browser.
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 Parse Server in the Server Compass template catalog.

Choose the Parse Server template. Server Compass fills the Parse Server API, Parse Dashboard, MongoDB, application ID, master key, and dashboard login settings.

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

Review the generated environment values, confirm the port is available, and click Deploy Now.

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

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

Open the dashboard URL in a browser. The Parse Dashboard web UI confirms the stack is reachable.

The Parse Dashboard web UI loaded successfully in a browser.
It deploys Parse Server with Parse Dashboard and MongoDB services.
The tutorial verified Parse Dashboard on host port 4040. The Parse API is exposed separately by the template.
The tutorial verifies the clean Parse Dashboard web UI because workspace setup, email delivery, and cloud functions depend on the production server.
No. The deployment guide should live on the Parse Server template detail page and be linked from the reusable template deployment docs page.
Set up Parse Server yourself using Docker Compose and the command line.
Use your terminal to securely access your server. You'll need your server's IP address.
# Connect via SSH
ssh root@your-vps-ip
# Alternative with key file
ssh -i /path/to/key root@your-vps-ipFirst time? Make sure Docker is installed on your VPS. Run: curl -fsSL https://get.docker.com | sh
Initialize a project folder on your server.
# Create and navigate to project directory
mkdir -p ~/apps/parse
cd ~/apps/parseUse this Docker Compose configuration for your deployment:
services:
parse:
image: parseplatform/parse-server:latest
ports:
- "1337:1337"
environment:
- PARSE_SERVER_APPLICATION_ID=<your-app-id>
- PARSE_SERVER_MASTER_KEY=<your-master-key>
- PARSE_SERVER_DATABASE_URI=mongodb://mongo:27017/parse
- PARSE_SERVER_URL=http://localhost:1337/parse
restart: unless-stopped
depends_on:
- mongo
parse-dashboard:
image: parseplatform/parse-dashboard:latest
ports:
- "4040:4040"
environment:
- PARSE_DASHBOARD_SERVER_URL=http://parse:1337/parse
- PARSE_DASHBOARD_APP_ID=<your-app-id>
- PARSE_DASHBOARD_MASTER_KEY=<your-master-key>
- PARSE_DASHBOARD_APP_NAME=Parse
- PARSE_DASHBOARD_USER_ID=admin
- PARSE_DASHBOARD_USER_PASSWORD=<your-dashboard-password>
restart: unless-stopped
depends_on:
- parse
mongo:
image: mongo:6
volumes:
- mongo_data:/data/db
restart: unless-stopped
volumes:
mongo_data:
PORTParse Server port(default: 1337)DASHBOARD_PORTDashboard port(default: 4040)APP_IDApp IDMASTER_KEYMaster keyDASHBOARD_USERDashboard user(default: admin)DASHBOARD_PASSWORDDashboard passwordBring up your containers in detached mode.
# Start all services
docker compose up -d
# List running containers
docker compose ps
# Watch the logs
docker compose logs -fAllow the application port through your server's firewall.
# Allow the application port through firewall
sudo ufw allow 1337/tcp
sudo ufw reload
# Access your app at:
# http://your-server-ip:1337No terminal needed. Deploy Parse Server through a visual dashboard with automatic configuration.
After deploying Parse Server with Server Compass, complete these steps to finish setup
Access Parse Dashboard
Create classes and schemas
Configure cloud functions
Need help? Check out our documentation for detailed guides.
Common questions about self-hosting Parse Server
Simply download Server Compass, connect to your VPS, and select Parse Server from the templates list. Fill in the required configuration and click Deploy. The entire process takes under 3 minutes.
Parse Server requires a minimum of 512MB 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 Parse Server backup and restore procedures.
Server Compass makes updates easy. Simply click the Update button in your deployment dashboard, and the latest Parse Server image will be pulled and deployed with zero downtime.
Parse Server 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

Full Supabase self-hosted with Kong, GoTrue Auth, Realtime, and Studio

Open-source Airtable alternative - turn any database into a smart spreadsheet
Download Server Compass and deploy Parse Server to your VPS in under 3 minutes. No Docker expertise required.
Download Server Compass