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.


Distributed task scheduler and runner
Add your server credentials to Server Compass
Choose from our template library
Fill in settings and click Deploy
Use the Cronicle template in Server Compass to deploy a self-hosted task scheduler on your VPS, then verify the Cronicle 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 Cronicle in the Server Compass template catalog.

Choose the Cronicle template. Server Compass fills the Cronicle service, base URL, persistent data volume, and log volume.

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

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

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

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

It deploys the Cronicle container with persistent data and log volumes and a configured base URL.
The tutorial used host port 3012, which maps to the Cronicle web UI on container port 3012.
A fresh Cronicle deployment is considered reachable when the web UI loads. Job categories, schedules, notifications, and worker setup are environment-specific.
No. The deployment guide should live on the Cronicle template detail page and be linked from the reusable template deployment docs page.
Take the DIY route and deploy Cronicle on your own server using Docker.
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/cronicle
cd ~/apps/cronicleUse this Docker Compose configuration for your deployment:
services:
cronicle:
image: bluet/cronicle-docker:latest
ports:
- "3012:3012"
environment:
- CRONICLE_base_app_url=<your-base-url>
volumes:
- cronicle_data:/opt/cronicle/data
- cronicle_logs:/opt/cronicle/logs
restart: unless-stopped
volumes:
cronicle_data:
cronicle_logs:
PORTHost port(default: 3012)BASE_URLBase URLBring 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 3012/tcp
sudo ufw reload
# Access your app at:
# http://your-server-ip:3012Forget SSH and YAML files. Deploy Cronicle visually with Server Compass in just a few clicks.
After deploying Cronicle with Server Compass, complete these steps to finish setup
Login and change password
Create job categories
Schedule jobs
Need help? Check out our documentation for detailed guides.
Common questions about self-hosting Cronicle
Simply download Server Compass, connect to your VPS, and select Cronicle from the templates list. Fill in the required configuration and click Deploy. The entire process takes under 3 minutes.
Cronicle 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 Cronicle backup and restore procedures.
Server Compass makes updates easy. Simply click the Update button in your deployment dashboard, and the latest Cronicle image will be pulled and deployed with zero downtime.
Cronicle 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 Cronicle to your VPS in under 3 minutes. No Docker expertise required.
Download Server Compass