deltreey / docker-cronicle

Simple and lightweight Cronicle Docker solution.

Home Page:https://soulteary.com/2021/12/05/cronicle-a-lightweight-tool-for-timed-tasks-part-1.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Docker Cronicle

Simple and lightweight Cronicle Docker solution.

Main Screenshot

Say goodbye to troublesome configuration and installation, and start your Scheduled Task Center with One-Click.

Docker Images

# use the latest version
docker pull soulteary/cronicle
# or specified version
docker pull soulteary/cronicle:0.9.11

Supported Versions

DockerHub: https://hub.docker.com/r/soulteary/cronicle

Default Account

default account and password:

  • username: admin
  • password: admin

Docker

Init your app first (first time only).

docker run --rm -it \
        -v `pwd`/data/data:/opt/cronicle/data:rw \
        -v `pwd`/data/logs:/opt/cronicle/logs:rw \
        -v `pwd`/data/plugins:/opt/cronicle/plugins:rw \
        --hostname cronicle \
        --name cronicle \
        soulteary/cronicle \
        /opt/cronicle/bin/control.sh setup

Then, Start app using the Docker CLI to locally persist data and logs.

docker run \
        -v /etc/localtime:/etc/localtime:ro \
        -v /etc/timezone:/etc/timezone:ro \
        -v `pwd`/data/data:/opt/cronicle/data:rw \
        -v `pwd`/data/logs:/opt/cronicle/logs:rw \
        -v `pwd`/data/plugins:/opt/cronicle/plugins:rw \
        -p 3012:3012 \
        --hostname cronicle \
        --name cronicle \
        soulteary/cronicle

Access it in your browser: http://localhost:3012

Docker Compose

Init your app first (first time only).

docker-compose -f docker-compose.init up

Then, Start app with simple command:

docker-compose down && docker-compose up -d

Access it in your browser: http://localhost:3012

Snapshots

Home

Home Tab Screenshot

Schedule

Schedule Screenshot

Event

Edit Event Screenshot

Event Timing Screenshot

Resource Limits Screenshot

Event History Screenshot

Event Stats Screenshot

Graphs Screenshot

Completed Jobs Screenshot

Job In Progress Screenshot

Job Success Screenshot

Job Failed Screenshot

My Account Screenshot

Activity Log Screenshot

API Keys Screenshot

Editing API Key Screenshot

Categories Screenshot

Edit Category Screenshot

Plugins Screenshot

About

Simple and lightweight Cronicle Docker solution.

https://soulteary.com/2021/12/05/cronicle-a-lightweight-tool-for-timed-tasks-part-1.html

License:MIT License


Languages

Language:JavaScript 71.0%Language:Dockerfile 29.0%