
A task scheduler built with Go and Vue.js that allows users to specify recurring jobs via a simple YAML configuration file. The scheduler reads job definitions, executes commands at specified times using cron expressions, and passes in environment variables for each job.
- Features
- How It Works
- Docker
- Screenshots
- Example Configuration
- Preinstalled Software
- ✨ Star History
- License
- Development setup
- Simple Configuration: Easily define jobs, cron schedules, and environment variables in a YAML config file.
- Cron Scheduling: Supports cron expressions for precise scheduling.
- Environment Variables: Define environment variables specific to each job.
- Easy Job Management: Add and remove jobs quickly with simple configuration.
- Pre-installed backup-software for an easy backup solution
- Defaults Section: This section defines default values that are applied to all jobs. You can specify a default cron expression and environment variables to be inherited by each job.
- Jobs Section: Here, you define multiple jobs. Each job can have its own cron expression, environment variables, and commands to execute.
- Environment Variables: Define environment variables for each job to customize its runtime environment.
- Commands: Each job can have multiple commands, which will be executed in sequence.
docker run -it --rm \
--name gocron \
--hostname gocron \
-p 8156:8156 \
-e TZ=Europe/Berlin \
# Delete runs from db after x days, disable with -1
-e DELETE_RUNS_AFTER_DAYS=7 \
# Log level can be one of: debug info warn error
-e LOG_LEVEL=info \
-e PORT=8156 \
# Check apprise for supported services (https://github.com/caronc/apprise?tab=readme-ov-file#supported-notifications)
# -e APPRISE_URL=ntfys://{token}@{hostname}/{topics} \
# one of: debug info warn error
# -e APPRISE_NOTIFY_LEVEL=warn \
-v ./config/:/app/config/ \
# Uncomment if using Restic with a password file
# -v ./.resticpwd:/secrets/.resticpwd \
# Uncomment if using a preconfigured rclone config
# -v ./.rclone.conf:/root/.config/rclone/rclone.conf \
# Uncomment to allow running Docker commands inside the container
# -v /var/run/docker.sock:/var/run/docker.sock \
ghcr.io/flohoss/gocron:latest
services:
gocron:
image: ghcr.io/flohoss/gocron:latest
restart: always
container_name: gocron
hostname: gocron
environment:
- TZ=Europe/Berlin
# Delete runs from db after x days, disable with -1
- DELETE_RUNS_AFTER_DAYS=7
# Log level can be one of: debug info warn error
- LOG_LEVEL=info
- PORT=8156
# Check apprise for supported services (https://github.com/caronc/apprise?tab=readme-ov-file#supported-notifications)
# - APPRISE_URL=ntfys://{token}@{hostname}/{topics}
# one of: debug info warn error
# - APPRISE_NOTIFY_LEVEL=warn
volumes:
- ./config/:/app/config/
# Uncomment if using Restic with a password file
# - ./.resticpwd:/secrets/.resticpwd
# Uncomment if using a preconfigured rclone config
# - ./.rclone.conf:/root/.config/rclone/rclone.conf
# Uncomment to allow running Docker commands inside the container
# - /var/run/docker.sock:/var/run/docker.sock
port:
- '8156:8156'
The following is an example of a valid YAML configuration creating backups with restic every 3 am in the morning and cleaning the repo every Sunday at 5 am:
defaults:
# every job will be appended to this cron and the jobs will run sequentially
cron: '0 3 * * *'
# global envs to use in all jobs
envs:
- key: RESTIC_PASSWORD_FILE
value: '/secrets/.resticpwd'
- key: BASE_REPOSITORY
value: 'rclone:pcloud:Server/Backups'
- key: APPDATA_PATH
value: '/mnt/user/appdata'
jobs:
- name: Cleanup
# override the default cron
cron: '0 5 * * 0'
# envs just for the job, overwriting exiting defaults
envs:
- key: RESTIC_POLICY
value: '--keep-daily 7 --keep-weekly 5 --keep-monthly 12 --keep-yearly 75'
- key: RESTIC_POLICY_SHORT
value: '--keep-last 7'
commands:
- command: restic -r ${BASE_REPOSITORY}/forgejo forget ${RESTIC_POLICY} --prune
- command: restic -r ${BASE_REPOSITORY}/paperless forget ${RESTIC_POLICY} --prune
- name: Forgejo
envs:
- key: RESTIC_REPOSITORY
value: ${BASE_REPOSITORY}/forgejo
commands:
- command: docker exec -e PASSWORD=password forgejo-db pg_dump db --username=user
file_output: ${APPDATA_PATH}/forgejo/.dbBackup.sql
- command: restic backup ${APPDATA_PATH}/forgejo
- name: Paperless
envs:
- key: RESTIC_REPOSITORY
value: ${BASE_REPOSITORY}/paperless
commands:
- command: docker exec paperless document_exporter ${APPDATA_PATH}/paperless/export
file_output: ${APPDATA_PATH}/paperless/.export.log
- command: restic backup ${APPDATA_PATH}/paperless
- name: Show files
# only a command per job is required
commands:
- command: ls -la
These tools are preinstalled and ready to be used for various operations within your jobs:
BorgBackup is a fast, secure, and space-efficient backup tool. It deduplicates data and can be used for both local and remote backups. It is widely known for its encryption and compression capabilities, which ensures that backups are both secure and compact.
Restic is a fast and secure backup program that supports various backends, including local storage and cloud providers. Restic is optimized for simplicity and speed, offering encrypted backups with minimal configuration. It integrates perfectly with the task scheduler for managing secure backups.
rclone is a command-line program used to manage and transfer files to and from various cloud storage services. It supports numerous cloud providers, including Google Drive, Dropbox, and Amazon S3, making it an excellent choice for managing backups on remote storage solutions. With rclone, you can efficiently sync, move, and manage your data in the cloud.
rsync is a fast and versatile file-copying tool that efficiently synchronizes files and directories between local and remote systems. It uses delta encoding to transfer only changed parts of files, making it an excellent choice for incremental backups and remote file synchronization over SSH.
curl is a command-line tool for transferring data using various network protocols, including HTTP, HTTPS, FTP, and SFTP. It is widely used for downloading files, interacting with APIs, and automating data transfers in scripts.
rdiff-backup is an incremental backup tool that efficiently maintains a full backup of the latest data while preserving historical versions in a space-efficient manner. It is ideal for remote and local backups, combining the best features of rsync and traditional incremental backup methods.
Let me know if you’d like any modifications! 🚀
This project is licensed under the MIT License - see the LICENSE file for details.
docker compose up
# Run docker compose up first for the types to be generated
docker compose run --rm types