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.


Diagramming and whiteboarding application
Add your server credentials to Server Compass
Choose from our template library
Fill in settings and click Deploy
Use the Draw.io template in Server Compass to deploy a self-hosted diagramming app for flowcharts, UML, network diagrams, and whiteboards on your VPS, then verify the Draw.io 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 Draw.io in the Server Compass template catalog.

Choose the Draw.io template. Server Compass fills in the single Draw.io web service and maps the browser port.

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

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 Draw.io image, starts the container, and verifies the stack.

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

Open the application URL in a browser. The Draw.io web UI confirms the site is reachable.

It deploys the self-hosted Draw.io web application so users can create flowcharts, UML diagrams, network diagrams, and other diagrams in a browser.
The tutorial used host port 8080, which maps to the Draw.io web service on container port 8080.
The tutorial verifies the clean Draw.io web UI because diagram storage, sharing, HTTPS, and access-control choices depend on the production setup.
No. The deployment guide should live on the Draw.io template detail page and be linked from the reusable template deployment docs page.
Prefer the command line? Follow this step-by-step guide to deploy Draw.io manually on your VPS.
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/drawio
cd ~/apps/drawioCreate a docker-compose.yml file with the following configuration:
services:
drawio:
image: jgraph/drawio
ports:
- "8080:8080"
restart: unless-stopped
PORTHost port to expose(default: 8080)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:8080Deploy Draw.io with a beautiful UI instead. No SSH, no YAML editing, no terminal commands. Just click, configure, and deploy in under 3 minutes.
After deploying Draw.io with Server Compass, complete these steps to finish setup
Access draw.io in your browser
Create and save diagrams locally
Need help? Check out our documentation for detailed guides.
Common questions about self-hosting Draw.io
Simply download Server Compass, connect to your VPS, and select Draw.io from the templates list. Fill in the required configuration and click Deploy. The entire process takes under 3 minutes.
Draw.io 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 Draw.io backup and restore procedures.
Server Compass makes updates easy. Simply click the Update button in your deployment dashboard, and the latest Draw.io image will be pulled and deployed with zero downtime.
Draw.io 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 Draw.io to your VPS in under 3 minutes. No Docker expertise required.
Download Server Compass