Skip to content

soulteary/docker-cronicle

Repository files navigation

Docker Cronicle

Docker Build Docker Image

ENGLISH | 中文文档

Simple and lightweight Cronicle Docker solution, support x86, ARM64, ARMv7.

Main Screenshot

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

Get Latest Docker Images

# use the latest version on DockerHub
docker pull soulteary/cronicle
# or specified version
docker pull soulteary/cronicle:0.9.46
# Use GHCR mirror instead
docker pull ghcr.io/soulteary/cronicle:latest

Supported Versions

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

Default Account

default account and password:

  • username: admin
  • password: admin

Docker

It is very simple to use, only one command is needed:

you can start a container that persists data and log files locally through Docker.

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

When the service is started, we can access the service in the browser: http://localhost:3012

Docker Compose

Using compose to start our service also requires only one command:

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

When the service is started, we can access the service in the browser: http://localhost:3012

With Traefik

You can refer to the configuration in docker-compose.traefik.yml file.

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