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.


Real-time performance monitoring
Add your server credentials to Server Compass
Choose from our template library
Fill in settings and click Deploy
Use the Netdata template in Server Compass to deploy a real-time server monitoring dashboard on your VPS, then verify the dashboard 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 Netdata in the Server Compass template catalog.

Choose the Netdata template. Server Compass fills the Netdata service, persistent volumes, host metrics mounts, and dashboard port.

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

Review the generated compose settings, confirm the dashboard port is available, and click Deploy.

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

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

Click Open Application or open the application URL in a browser. The Netdata dashboard confirms that the monitoring service is reachable.

The Netdata dashboard loaded successfully and /api/v1/info returned the expected Netdata response.
It deploys the Netdata container with persistent config/cache/data volumes, host metrics mounts, and an exposed web dashboard on container port 19999.
The tutorial used host port 19999, which maps to the Netdata dashboard on container port 19999.
Netdata exposes detailed host and container telemetry. For production, put it behind a VPN, firewall allowlist, or authenticated reverse proxy instead of leaving it open to the internet.
No. The deployment guide should live on the Netdata template detail page and be linked from the reusable template deployment docs page.
Want full control? Here's how to deploy Netdata yourself using Docker Compose.
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/netdata
cd ~/apps/netdataUse this Docker Compose configuration for your deployment:
services:
netdata:
image: netdata/netdata:latest
ports:
- "19999:19999"
cap_add:
- SYS_PTRACE
security_opt:
- apparmor:unconfined
volumes:
- netdata_config:/etc/netdata
- netdata_lib:/var/lib/netdata
- netdata_cache:/var/cache/netdata
- /etc/passwd:/host/etc/passwd:ro
- /etc/group:/host/etc/group:ro
- /proc:/host/proc:ro
- /sys:/host/sys:ro
- /etc/os-release:/host/etc/os-release:ro
restart: unless-stopped
volumes:
netdata_config:
netdata_lib:
netdata_cache:
PORTHost port(default: 19999)Bring 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 19999/tcp
sudo ufw reload
# Access your app at:
# http://your-server-ip:19999Skip the terminal and deploy Netdata with a visual interface. Configure everything with clicks, not commands.
After deploying Netdata with Server Compass, complete these steps to finish setup
Access dashboard
Configure alerts
Set up cloud sync (optional)
Need help? Check out our documentation for detailed guides.
Common questions about self-hosting Netdata
Simply download Server Compass, connect to your VPS, and select Netdata from the templates list. Fill in the required configuration and click Deploy. The entire process takes under 3 minutes.
Netdata 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 Netdata backup and restore procedures.
Server Compass makes updates easy. Simply click the Update button in your deployment dashboard, and the latest Netdata image will be pulled and deployed with zero downtime.
Netdata 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 Netdata to your VPS in under 3 minutes. No Docker expertise required.
Download Server Compass