Back to all templates
Cronicle logo

Cronicle

Development256MB+ RAM

Distributed task scheduler and runner

schedulercrontasks

Deploy Cronicle in 3 Steps

1

Connect Your VPS

Add your server credentials to Server Compass

2

Select Cronicle

Choose from our template library

3

Deploy & Configure

Fill in settings and click Deploy

No Docker knowledge required
Step-by-step deployment guide

Deploy Cronicle on a VPS with Server Compass

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.

About 10 minutesBrowser verified
1
Step 1

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.

Server Compass Apps tab before creating a Cronicle app
2
Step 2

Choose an app template

Click New App and choose the template deployment path so Server Compass can load the built-in catalog.

Choosing to deploy an app from a Server Compass template
3
Step 3

Search for Cronicle

Use the template picker search to find Cronicle in the Server Compass template catalog.

Searching for Cronicle in the Server Compass template picker
4
Step 4

Select the Cronicle template

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

Cronicle template selected in Server Compass
5
Step 5

Review the Cronicle settings

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

Reviewing Cronicle project settings and compose services
6
Step 6

Deploy Cronicle

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

Reviewing Cronicle environment variables and port before deployment
7
Step 7

Watch the deployment progress

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

Server Compass deploying the Cronicle template on the VPS
8
Step 8

Confirm Cronicle is running

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

Cronicle template running in the Server Compass Apps tab
9
Step 9

Open Cronicle in the browser

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.

The deployed Cronicle web UI loaded in a browser

After Cronicle Opens

  • Sign in with the default admin credentials and change the password immediately.
  • Add a domain and HTTPS before scheduling production jobs.
  • Create job categories, plugins, and schedules for your workloads.
  • Configure notifications and worker nodes before relying on Cronicle for production automation.
  • Back up the Cronicle data and log volumes.

Verified Result

The Cronicle web UI loaded successfully in a browser.

Cronicle deployment questions

What does the Cronicle template deploy?

It deploys the Cronicle container with persistent data and log volumes and a configured base URL.

Which port did the tutorial use?

The tutorial used host port 3012, which maps to the Cronicle web UI on container port 3012.

Why does the browser verification stop at the login screen?

A fresh Cronicle deployment is considered reachable when the web UI loads. Job categories, schedules, notifications, and worker setup are environment-specific.

Should this become a blog post?

No. The deployment guide should live on the Cronicle template detail page and be linked from the reusable template deployment docs page.

DIY Deployment

Self-Host Cronicle with Docker

Take the DIY route and deploy Cronicle on your own server using Docker.

1

Access Your VPS Terminal

Use your terminal to securely access your server. You'll need your server's IP address.

terminal
# Connect via SSH
ssh root@your-vps-ip

# Alternative with key file
ssh -i /path/to/key root@your-vps-ip

First time? Make sure Docker is installed on your VPS. Run: curl -fsSL https://get.docker.com | sh

2

Set Up the Deployment Folder

Initialize a project folder on your server.

terminal
# Create and navigate to project directory
mkdir -p ~/apps/cronicle
cd ~/apps/cronicle
3

Set Up the Stack Definition

Use this Docker Compose configuration for your deployment:

docker-compose.yml
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:
Configurable Options
PORTHost port(default: 3012)
BASE_URLBase URL
4

Start the Containers

Bring up your containers in detached mode.

terminal
# Start all services
docker compose up -d

# List running containers
docker compose ps

# Watch the logs
docker compose logs -f
5

Set Up Firewall Rules

Allow the application port through your server's firewall.

terminal
# Allow the application port through firewall
sudo ufw allow 3012/tcp
sudo ufw reload

# Access your app at:
# http://your-server-ip:3012
Skip the Terminal

Let Server Compass do the heavy lifting.

Forget SSH and YAML files. Deploy Cronicle visually with Server Compass in just a few clicks.

  • Beautiful interface
  • One-click deploys
  • Let's Encrypt SSL
  • Zero downtime
  • Container monitoring
  • Easy rollbacks
Download Server Compass$29 one-time • Lifetime license

After Deployment

After deploying Cronicle with Server Compass, complete these steps to finish setup

1

Login and change password

2

Create job categories

3

Schedule jobs

Need help? Check out our documentation for detailed guides.

Cronicle FAQ

Common questions about self-hosting Cronicle

How do I deploy Cronicle with Server Compass?

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.

What are the system requirements for Cronicle?

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.

Can I migrate my existing Cronicle data?

Yes! Server Compass provides volume mapping that allows you to import existing data. You can also use standard Cronicle backup and restore procedures.

How do I update Cronicle to the latest version?

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.

Is Cronicle free to self-host?

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.

Ready to Self-Host Cronicle?

Download Server Compass and deploy Cronicle to your VPS in under 3 minutes. No Docker expertise required.

Download Server Compass