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.


Cron job monitoring service
Add your server credentials to Server Compass
Choose from our template library
Fill in settings and click Deploy
Use the Healthchecks template in Server Compass to deploy a self-hosted cron job monitoring service with PostgreSQL on your VPS, then verify the Healthchecks web UI 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 Healthchecks in the Server Compass template catalog.

Choose the Healthchecks template. Server Compass fills the Healthchecks service, PostgreSQL service, site root URL, Django secret key, and database password.

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

Review the generated environment values, keep the database password masked, confirm the web port is available, and click Deploy Now.

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

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

Click Open Application or open the application URL in a browser. The Healthchecks web UI confirms the deployed monitoring service is reachable and ready for final setup.

It deploys the Healthchecks container with PostgreSQL 16 and generated site root, Django secret, and database password values.
The tutorial used host port 8000, which maps to the Healthchecks web UI on container port 8000.
A fresh Healthchecks deployment is considered reachable when the web UI loads. Superuser creation, SMTP, and check setup are environment-specific.
No. The deployment guide should live on the Healthchecks template detail page and be linked from the reusable template deployment docs page.
Want full control? Here's how to deploy Healthchecks yourself using Docker Compose.
Fire up your terminal application and establish a connection to your remote server.
# Access your VPS
ssh root@YOUR_SERVER_IP
# With SSH key authentication
ssh -i ~/.ssh/your-private-key root@YOUR_SERVER_IPFirst time? Ensure Docker is installed first: curl -fsSL https://get.docker.com | sh
Create a folder to house your Docker Compose configuration.
# Create and navigate to project directory
mkdir -p ~/apps/healthchecks
cd ~/apps/healthchecksDefine your services in a docker-compose.yml file:
services:
healthchecks:
image: healthchecks/healthchecks:latest
ports:
- "8000:8000"
environment:
- DB=postgres
- DB_HOST=db
- DB_PORT=5432
- DB_NAME=healthchecks
- DB_USER=healthchecks
- DB_PASSWORD=<your-db-password>
- SECRET_KEY=<your-secret-key>
- SITE_ROOT=<your-site-root>
- ALLOWED_HOSTS=*
restart: unless-stopped
depends_on:
- db
db:
image: postgres:16-alpine
environment:
- POSTGRES_USER=healthchecks
- POSTGRES_PASSWORD=<your-db-password>
- POSTGRES_DB=healthchecks
volumes:
- postgres_data:/var/lib/postgresql/data
restart: unless-stopped
volumes:
postgres_data:
PORTHost port(default: 8000)SITE_ROOTSite URLSECRET_KEYSecret keyDB_PASSWORDDB passwordStart your containers and verify they're running correctly.
# Launch the stack
docker compose up -d
# Verify container status
docker compose ps
# Follow the logs
docker compose logs --followUpdate UFW rules to allow traffic on the application port.
# Allow the application port through firewall
sudo ufw allow 8000/tcp
sudo ufw reload
# Access your app at:
# http://your-server-ip:8000Skip the terminal and deploy Healthchecks with a visual interface. Configure everything with clicks, not commands.
After deploying Healthchecks with Server Compass, complete these steps to finish setup
Create superuser
Create checks for your cron jobs
Need help? Check out our documentation for detailed guides.
Common questions about self-hosting Healthchecks
Simply download Server Compass, connect to your VPS, and select Healthchecks from the templates list. Fill in the required configuration and click Deploy. The entire process takes under 3 minutes.
Healthchecks 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 Healthchecks backup and restore procedures.
Server Compass makes updates easy. Simply click the Update button in your deployment dashboard, and the latest Healthchecks image will be pulled and deployed with zero downtime.
Healthchecks 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 Healthchecks to your VPS in under 3 minutes. No Docker expertise required.
Download Server Compass