Compare commits
41 Commits
fa39f8b7d4
...
1.0.2
| Author | SHA1 | Date | |
|---|---|---|---|
| 3c122e9f0b | |||
| dc6dbf5b64 | |||
| cef257c56a | |||
| c31d8f79fa | |||
| 0cf6864d20 | |||
| 4270518bd5 | |||
| 208296bab2 | |||
| 2de4cd5da6 | |||
| b7c5fee65f | |||
| 3d9d4b4333 | |||
| 6fdfa75adb | |||
| 92f41ce321 | |||
| 6342e0bf32 | |||
| 9cf5b3e39c | |||
| 363169e636 | |||
| 877e98eff7 | |||
| 90910f9fdf | |||
| 1089abc2cb | |||
| b932a8d2f1 | |||
| 52332d7e22 | |||
| 96bdd83385 | |||
| 7d94621192 | |||
| b5d80d90a0 | |||
| 06f5e5d27a | |||
| 3f239e2527 | |||
| 056748f20c | |||
| d4846a0ccf | |||
| 52460f8741 | |||
| d1c1cfd46f | |||
| bfd684f06f | |||
| c6007e71f8 | |||
| 4485b53801 | |||
| 0f96656929 | |||
| 74a1e3f206 | |||
| a611ceff70 | |||
| 7f98dc08ce | |||
| 8cc55e3bf8 | |||
| 6c6395097f | |||
| 821dbf140c | |||
| 22f4727800 | |||
| 113839c359 |
81
.drone.yml
81
.drone.yml
@ -22,6 +22,8 @@ steps:
|
|||||||
when:
|
when:
|
||||||
ref:
|
ref:
|
||||||
- refs/tags/**
|
- refs/tags/**
|
||||||
|
depends_on:
|
||||||
|
- clone
|
||||||
|
|
||||||
# Set tags for main branch
|
# Set tags for main branch
|
||||||
- name: make-tags
|
- name: make-tags
|
||||||
@ -31,6 +33,9 @@ steps:
|
|||||||
when:
|
when:
|
||||||
ref:
|
ref:
|
||||||
- refs/heads/main
|
- refs/heads/main
|
||||||
|
depends_on:
|
||||||
|
- get-tags
|
||||||
|
- clone
|
||||||
|
|
||||||
- name: make-tags-release
|
- name: make-tags-release
|
||||||
image: node
|
image: node
|
||||||
@ -39,9 +44,12 @@ steps:
|
|||||||
when:
|
when:
|
||||||
ref:
|
ref:
|
||||||
- refs/tags/**
|
- refs/tags/**
|
||||||
|
depends_on:
|
||||||
|
- get-tags
|
||||||
|
- clone
|
||||||
|
|
||||||
# Build containers from main branch
|
# Build containers from main branch
|
||||||
- name: build
|
- name: build-gitea
|
||||||
image: thegeeklab/drone-docker-buildx
|
image: thegeeklab/drone-docker-buildx
|
||||||
privileged: true
|
privileged: true
|
||||||
settings:
|
settings:
|
||||||
@ -55,17 +63,53 @@ steps:
|
|||||||
platforms:
|
platforms:
|
||||||
- linux/arm64
|
- linux/arm64
|
||||||
- linux/amd64
|
- linux/amd64
|
||||||
|
depends_on:
|
||||||
|
- make-tags
|
||||||
|
- make-tags-release
|
||||||
|
|
||||||
- name: release
|
- name: build-github
|
||||||
|
image: thegeeklab/drone-docker-buildx
|
||||||
|
privileged: true
|
||||||
|
settings:
|
||||||
|
provenance: false
|
||||||
|
registry: ghcr.io
|
||||||
|
username:
|
||||||
|
from_secret: docker_username
|
||||||
|
password:
|
||||||
|
from_secret: github_token
|
||||||
|
repo: ghcr.io/mrmeeb/cronicle
|
||||||
|
platforms:
|
||||||
|
- linux/arm64
|
||||||
|
- linux/amd64
|
||||||
|
depends_on:
|
||||||
|
- make-tags
|
||||||
|
- make-tags-release
|
||||||
|
|
||||||
|
- name: release-gitea
|
||||||
image: goreleaser/goreleaser
|
image: goreleaser/goreleaser
|
||||||
environment:
|
environment:
|
||||||
GITEA_TOKEN:
|
GITEA_TOKEN:
|
||||||
from_secret: gitea_token
|
from_secret: gitea_token
|
||||||
commands:
|
commands:
|
||||||
- goreleaser release
|
- goreleaser release -f .goreleaser-gitea.yaml
|
||||||
when:
|
when:
|
||||||
ref:
|
ref:
|
||||||
- refs/tags/**
|
- refs/tags/**
|
||||||
|
depends_on:
|
||||||
|
- build-gitea
|
||||||
|
|
||||||
|
- name: release-github
|
||||||
|
image: goreleaser/goreleaser
|
||||||
|
environment:
|
||||||
|
GITHUB_TOKEN:
|
||||||
|
from_secret: github_token
|
||||||
|
commands:
|
||||||
|
- goreleaser release -f .goreleaser-github.yaml
|
||||||
|
when:
|
||||||
|
ref:
|
||||||
|
- refs/tags/**
|
||||||
|
depends_on:
|
||||||
|
- build-github
|
||||||
|
|
||||||
- name: notify
|
- name: notify
|
||||||
image: plugins/slack
|
image: plugins/slack
|
||||||
@ -76,6 +120,11 @@ steps:
|
|||||||
settings:
|
settings:
|
||||||
webhook:
|
webhook:
|
||||||
from_secret: slack_webhook
|
from_secret: slack_webhook
|
||||||
|
depends_on:
|
||||||
|
- release-gitea
|
||||||
|
- release-github
|
||||||
|
- build-github
|
||||||
|
- build-gitea
|
||||||
|
|
||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
@ -100,7 +149,7 @@ steps:
|
|||||||
- echo -n "develop-${DRONE_COMMIT_SHA:0:8}, develop" > .tags
|
- echo -n "develop-${DRONE_COMMIT_SHA:0:8}, develop" > .tags
|
||||||
|
|
||||||
# Build containers from develop branch
|
# Build containers from develop branch
|
||||||
- name: build
|
- name: build-gitea
|
||||||
image: thegeeklab/drone-docker-buildx
|
image: thegeeklab/drone-docker-buildx
|
||||||
privileged: true
|
privileged: true
|
||||||
settings:
|
settings:
|
||||||
@ -114,6 +163,25 @@ steps:
|
|||||||
platforms:
|
platforms:
|
||||||
- linux/arm64
|
- linux/arm64
|
||||||
- linux/amd64
|
- linux/amd64
|
||||||
|
depends_on:
|
||||||
|
- make-tags
|
||||||
|
|
||||||
|
- name: build-github
|
||||||
|
image: thegeeklab/drone-docker-buildx
|
||||||
|
privileged: true
|
||||||
|
settings:
|
||||||
|
provenance: false
|
||||||
|
registry: ghcr.io
|
||||||
|
username:
|
||||||
|
from_secret: docker_username
|
||||||
|
password:
|
||||||
|
from_secret: github_token
|
||||||
|
repo: ghcr.io/mrmeeb/cronicle
|
||||||
|
platforms:
|
||||||
|
- linux/arm64
|
||||||
|
- linux/amd64
|
||||||
|
depends_on:
|
||||||
|
- make-tags
|
||||||
|
|
||||||
- name: notify
|
- name: notify
|
||||||
image: plugins/slack
|
image: plugins/slack
|
||||||
@ -123,4 +191,7 @@ steps:
|
|||||||
- failure
|
- failure
|
||||||
settings:
|
settings:
|
||||||
webhook:
|
webhook:
|
||||||
from_secret: slack_webhook
|
from_secret: slack_webhook
|
||||||
|
depends_on:
|
||||||
|
- build-gitea
|
||||||
|
- build-github
|
||||||
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,2 +1,3 @@
|
|||||||
dist/
|
dist-gitea/
|
||||||
|
dist-github/
|
||||||
.tags
|
.tags
|
||||||
@ -1,3 +1,5 @@
|
|||||||
|
dist: dist-gitea
|
||||||
|
|
||||||
build:
|
build:
|
||||||
skip: true
|
skip: true
|
||||||
|
|
||||||
20
.goreleaser-github.yaml
Normal file
20
.goreleaser-github.yaml
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
dist: dist-github
|
||||||
|
|
||||||
|
build:
|
||||||
|
skip: true
|
||||||
|
|
||||||
|
archives:
|
||||||
|
- format: binary
|
||||||
|
|
||||||
|
release:
|
||||||
|
draft: true
|
||||||
|
github:
|
||||||
|
owner: MrMeeb
|
||||||
|
name: cronicle-docker
|
||||||
|
|
||||||
|
changelog:
|
||||||
|
sort: asc
|
||||||
|
filters:
|
||||||
|
exclude:
|
||||||
|
- '^docs:'
|
||||||
|
- '^test:'
|
||||||
36
README.md
36
README.md
@ -1,17 +1,41 @@
|
|||||||
# Cronicle Docker
|
# Cronicle Docker
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Dockerised Cronicle, based on the [Cronicle-Edge](https://github.com/cronicle-edge/cronicle-edge) fork.
|
Dockerised Cronicle, based on the [Cronicle-Edge](https://github.com/cronicle-edge/cronicle-edge) fork of [Cronicle](https://github.com/jhuckaby/Cronicle). This container was built to include features I value in containers, namely logging to `stdout` and configurable `PUID` and `PGID`.
|
||||||
|
|
||||||
Can function in both the **manager** and **worker** role.
|
This container can function in both the **manager** and **worker** role.
|
||||||
|
|
||||||
*This repo is mirrored to GitHub*
|
|
||||||
|
|
||||||
## Links
|
## Links
|
||||||
- :tea: [Gitea Repo (source)](https://git.mrmeeb.stream/MrMeeb/cronicle-docker)
|
- :tea: [Gitea Repo (source)](https://git.mrmeeb.stream/MrMeeb/cronicle-docker)
|
||||||
- :whale2: [Containers](https://git.mrmeeb.stream/MrMeeb/-/packages/container/cronicle/latest) - since I'm currently not also publishing them to ghcr.io
|
- :whale2: [Containers](https://git.mrmeeb.stream/MrMeeb/-/packages/container/cronicle/latest) (also published to GHCR)
|
||||||
- :mirror: [GitHub mirror](https://github.com/MrMeeb/cronicle-docker)
|
- :mirror: [GitHub mirror](https://github.com/MrMeeb/cronicle-docker)
|
||||||
|
- :package: [Cronicle Repo](https://github.com/jhuckaby/Cronicle)
|
||||||
|
- :package: [Cronicle-Edge Repo](https://github.com/cronicle-edge/cronicle-edge)
|
||||||
|
|
||||||
|
*This repo is mirrored to GitHub*
|
||||||
|
|
||||||
|
## Overview
|
||||||
|
|
||||||
|
[**Cronicle**](https://github.com/jhuckaby/Cronicle) is a multi-server task scheduler and runner, with a web based front-end UI. It handles both scheduled, repeating and on-demand jobs, targeting any number of worker servers, with real-time stats and live log viewer. It's basically a fancy [Cron](https://en.wikipedia.org/wiki/Cron) replacement written in [Node.js](https://nodejs.org/). You can give it simple shell commands, or write Plugins in virtually any language.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Features at a Glance
|
||||||
|
|
||||||
|
* Single or multi-server setup.
|
||||||
|
* Automated failover to backup servers.
|
||||||
|
* Auto-discovery of nearby servers.
|
||||||
|
* Real-time job status with live log viewer.
|
||||||
|
* Plugins can be written in any language.
|
||||||
|
* Schedule events in multiple timezones.
|
||||||
|
* Optionally queue up long-running events.
|
||||||
|
* Track CPU and memory usage for each job.
|
||||||
|
* Historical stats with performance graphs.
|
||||||
|
* Simple JSON messaging system for Plugins.
|
||||||
|
* Web hooks for external notification systems.
|
||||||
|
* Simple REST API for scheduling and running events.
|
||||||
|
* API Keys for authenticating remote apps.
|
||||||
|
|
||||||
## Tags
|
## Tags
|
||||||
|
|
||||||
|
|||||||
@ -103,4 +103,22 @@ else
|
|||||||
|
|
||||||
echo "'$MODE' is not a recognised appion for the MODE environment variable. Accepted appions are 'manager' and 'worker'."
|
echo "'$MODE' is not a recognised appion for the MODE environment variable. Accepted appions are 'manager' and 'worker'."
|
||||||
|
|
||||||
|
fi
|
||||||
|
|
||||||
|
#Expose log directory
|
||||||
|
if [ ! -d /config/cronicle/logs ]
|
||||||
|
then
|
||||||
|
|
||||||
|
echo "Logs dir is missing, creating."
|
||||||
|
|
||||||
|
cp -r /app/cronicle/logs /config/cronicle/logs
|
||||||
|
rm -rf /app/cronicle/logs
|
||||||
|
ln -s /config/cronicle/logs /app/cronicle/logs
|
||||||
|
else
|
||||||
|
|
||||||
|
echo "Logs dir already exists. Doesn't need creating."
|
||||||
|
echo "Linking persistent logs dir back into Cronicle."
|
||||||
|
rm -rf /app/cronicle/logs
|
||||||
|
ln -s /config/cronicle/logs /app/cronicle/logs
|
||||||
|
|
||||||
fi
|
fi
|
||||||
Reference in New Issue
Block a user