2023-05-27 21:58:31 +00:00
2023-05-27 16:49:13 +00:00
2023-05-27 15:37:58 +00:00
2023-05-27 13:40:53 +00:00
2023-05-27 22:05:58 +00:00
2023-05-27 16:46:47 +00:00

Cronicle Docker

Drone (self-hosted) with branch Drone (self-hosted) with branch

Dockerised Cronicle, based on the Cronicle-Edge fork.

Can function in both the manager and worker role.

Tags

Tag Description
latest Latest image built from the main branch. Usually coincides with a tagged release.
develop Latest image built from the develop branch. Commits are made to the develop branch before being merged to main. Old versions of develop are removed after 14 days.

Tags relating to releases are also available, for locking in on a specific version.

Running

config.json, located in /config/cronicle/conf/config.json, is automatically generated on the first run of Cronicle in 'manager' mode. This file must be kept identical between the manager and any workers it controls.

If you want to configure Cronicle before first run (e.g to use a different storage engine), download config_sample.json and adjust accordingly before placing in /config/cronicle/conf/config.json.

NOTE: You must define the hostname of the container. Cronicle expects the hostname to remain the same, so the randomly-generated container hostname can cause problems if it changes.

Docker CLI

docker run -d --name cronicle \
    --hostname cronicle-manager \
    -p 3012:3012 \
    -e MODE=manager \
    -e PUID=1000 \
    -e PGID=1000 \
    -e TZ=Europe/London \
    -v {path on host}:/config
    git.mrmeeb.stream/mrmeeb/cronicle:latest 

Docker Compose

version: '3'
services:
  cronicle:
    container_name: cronicle
    image: git.mrmeeb.stream/mrmeeb/cronicle:latest
    restart: unless-stopped
    hostname: cronicle-manager
    ports:
      - 3012:3012
    volumes:
      - {path on host}:/config
    environment:
      - MODE=manager
      - PUID=1000
      - PGID=1000
      - TZ=Europe/London

Custom Scripts

This container automatically checks for scripts in /config/init and runs them at startup. This could be useful if you need to install additional applications into a worker container so it can execute jobs.

Ports

Port Description
3012 WebUI and communication between manager and workers

Volumes

Mount Description
/config Persistent config file and job configurations

Environment Variables

Variable Options Default Description
MODE manager, worker manager Determines what mode Cronicle runs in
PUID int 1000 Sets the UID of the user Cronicle runs under
PGID int 1000 Sets the GID of the user Cronicle runs under
TZ List of valid TZs UTC Sets the timezone of the container and by extension Cronicle
Description
Dockerised Cronicle, based on the Cronicle-Edge fork
Readme 159 KiB
1.0.5 Latest
2024-05-05 17:15:49 +00:00
Languages
Shell 69.7%
Dockerfile 30.3%