Compare commits
39 Commits
1.0.0
...
aace951501
| Author | SHA1 | Date | |
|---|---|---|---|
| aace951501 | |||
| 193f104408 | |||
| c4e8faff3b | |||
| 0080d188ab | |||
| eefaba12cb | |||
| 114c87fefe | |||
| a8eb04c76b | |||
| debd509868 | |||
| e8d9f7c8cd | |||
| 98ab91f73f | |||
| 694ba8f5ce | |||
| c232595f36 | |||
| 6ac07ec9a0 | |||
| ab73132553 | |||
| 76cdb2640e | |||
| f1f322d58a | |||
| bfbc0e22d7 | |||
| f3dc829111 | |||
| 9c3caf751e | |||
| 1ac78908ad | |||
| f990871798 | |||
| 2ecac58414 | |||
| 613393f328 | |||
| 30026b4e17 | |||
| 580845afe0 | |||
| d4aa8ff410 | |||
| b3436f3b2c | |||
| 4541df4c8a | |||
| 26c3a15c81 | |||
| e10acf4e46 | |||
| 2d8fb52b23 | |||
| 511704a90f | |||
| 70d6215ca3 | |||
| d759db2bb0 | |||
| c04d6febad | |||
| cad9b48ab9 | |||
| 327208391b | |||
| ee7034cba3 | |||
| 78f681fb41 |
79
.drone.yml
79
.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
|
||||||
@ -124,3 +192,6 @@ steps:
|
|||||||
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:'
|
||||||
38
Dockerfile
38
Dockerfile
@ -1,46 +1,60 @@
|
|||||||
FROM alpine:latest
|
FROM alpine:latest as base
|
||||||
|
ARG TARGETARCH
|
||||||
|
|
||||||
|
FROM base AS base-amd64
|
||||||
|
ENV S6_OVERLAY_ARCH=x86_64
|
||||||
|
|
||||||
|
FROM base AS base-arm64
|
||||||
|
ENV S6_OVERLAY_ARCH=aarch64
|
||||||
|
|
||||||
|
FROM base-${TARGETARCH}${TARGETVARIANT}
|
||||||
|
|
||||||
ARG S6_OVERLAY_VERSION=3.1.5.0
|
ARG S6_OVERLAY_VERSION=3.1.5.0
|
||||||
|
ARG CRONICLE_EDGE_VERSION=1.6.2
|
||||||
|
|
||||||
ENV CRONICLE_foreground=1
|
ENV CRONICLE_foreground=1
|
||||||
ENV CRONICLE_echo=1
|
ENV CRONICLE_echo=1
|
||||||
ENV CRONICLE_color=1
|
ENV CRONICLE_color=1
|
||||||
ENV EDITOR=vi
|
ENV EDITOR=nano
|
||||||
ENV MODE=manager
|
ENV MODE=manager
|
||||||
ENV PUID=1000
|
ENV PUID=1000
|
||||||
ENV PGID=1000
|
ENV PGID=1000
|
||||||
ENV TZ=UTC
|
ENV TZ=UTC
|
||||||
|
ENV LOG_LEVEL=9
|
||||||
|
|
||||||
#Get required packages
|
#Get required packages
|
||||||
RUN apk update && apk add tzdata curl shadow bash xz git procps nodejs npm
|
RUN apk update && apk add tzdata curl shadow bash xz git procps nodejs npm nano
|
||||||
|
|
||||||
#Make folders
|
#Make folders
|
||||||
RUN mkdir /config && \
|
RUN mkdir /config && \
|
||||||
mkdir /app && \
|
mkdir /app && \
|
||||||
#Create default user
|
#Create default user
|
||||||
useradd -u 1000 -U -d /config -s /bin/false mrmeeb && \
|
useradd -u 1000 -U -d /config -s /bin/false cronicle && \
|
||||||
usermod -G users mrmeeb
|
usermod -G users cronicle
|
||||||
|
|
||||||
#Install s6-overlay
|
#Install s6-overlay
|
||||||
RUN curl -fsSL "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-noarch.tar.xz" | tar Jpxf - -C / && \
|
RUN curl -fsSL "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-noarch.tar.xz" | tar Jpxf - -C / && \
|
||||||
curl -fsSL "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-x86_64.tar.xz" | tar Jpxf - -C / && \
|
curl -fsSL "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-${S6_OVERLAY_ARCH}.tar.xz" | tar Jpxf - -C / && \
|
||||||
curl -fsSL "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-symlinks-noarch.tar.xz" | tar Jpxf - -C / && \
|
curl -fsSL "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-symlinks-noarch.tar.xz" | tar Jpxf - -C / && \
|
||||||
curl -fsSL "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-symlinks-arch.tar.xz" | tar Jpxf - -C /
|
curl -fsSL "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-symlinks-arch.tar.xz" | tar Jpxf - -C /
|
||||||
ENV S6_BEHAVIOUR_IF_STAGE2_FAILS=2 S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0 S6_VERBOSITY=1
|
ENV S6_BEHAVIOUR_IF_STAGE2_FAILS=2 S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0 S6_VERBOSITY=1
|
||||||
|
|
||||||
#Install Cronicle
|
#Install Cronicle
|
||||||
RUN git clone https://github.com/cronicle-edge/cronicle-edge.git /app/cronicle
|
RUN mkdir /app/cronicle && \
|
||||||
|
cd /app/cronicle && \
|
||||||
|
wget https://github.com/cronicle-edge/cronicle-edge/archive/refs/tags/v${CRONICLE_EDGE_VERSION}.tar.gz && \
|
||||||
|
tar -xf v${CRONICLE_EDGE_VERSION}.tar.gz --strip-components 1 && \
|
||||||
|
rm -rf Docker* .gitignore Readme.md .vscode && \
|
||||||
|
rm -rf v${CRONICLE_EDGE_VERSION}.tar.gz
|
||||||
|
|
||||||
WORKDIR /app/cronicle
|
WORKDIR /app/cronicle
|
||||||
RUN npm install && \
|
RUN npm install && \
|
||||||
node bin/build dist
|
node bin/build dist
|
||||||
RUN rm -rf /app/cronicle/Docker* .vscode
|
|
||||||
|
|
||||||
#Create Cronicle user, necessary for SSH plugin with default settings
|
|
||||||
RUN adduser --disabled-password --no-create-home cronicle
|
|
||||||
|
|
||||||
COPY root/ /
|
COPY root/ /
|
||||||
RUN chmod +x /cronicle-prepare.sh && \
|
RUN chmod +x /cronicle-prepare.sh && \
|
||||||
chmod +x /container-init.sh
|
chmod +x /container-init.sh && \
|
||||||
|
chown -R ${PUID}:${PGID} /app /config
|
||||||
|
|
||||||
EXPOSE 3012
|
EXPOSE 3012
|
||||||
|
|
||||||
|
|||||||
42
README.md
42
README.md
@ -1,10 +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.
|
||||||
|
|
||||||
|
## Links
|
||||||
|
- :tea: [Gitea Repo (source)](https://git.mrmeeb.stream/MrMeeb/cronicle-docker)
|
||||||
|
- :whale2: [Containers](https://git.mrmeeb.stream/MrMeeb/-/packages/container/cronicle/latest) (also published the GHCR)
|
||||||
|
- :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
|
||||||
|
|
||||||
@ -19,9 +50,9 @@ Tags relating to releases are also available, for locking in on a specific versi
|
|||||||
|
|
||||||
`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.
|
`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`.
|
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`. Make sure to change the `secret`!
|
||||||
|
|
||||||
:exclamation: 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. :exclamation:
|
:exclamation: 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. :exclamation:
|
||||||
|
|
||||||
### Docker CLI
|
### Docker CLI
|
||||||
```
|
```
|
||||||
@ -80,3 +111,4 @@ This container automatically checks for scripts in `/config/init` and runs them
|
|||||||
|PUID |int |1000 |Sets the UID of the user Cronicle runs under
|
|PUID |int |1000 |Sets the UID of the user Cronicle runs under
|
||||||
|PGID |int |1000 |Sets the GID of the user Cronicle runs under
|
|PGID |int |1000 |Sets the GID of the user Cronicle runs under
|
||||||
|TZ |[List of valid TZs](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List) |UTC |Sets the timezone of the container and by extension Cronicle
|
|TZ |[List of valid TZs](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List) |UTC |Sets the timezone of the container and by extension Cronicle
|
||||||
|
|LOG_LEVEL|1-10 |9 |Sets log level from `1` (quietest) to `10` (loudest)|
|
||||||
|
|||||||
@ -21,6 +21,7 @@ PUID=${PUID}
|
|||||||
PGID=${PGID}
|
PGID=${PGID}
|
||||||
TZ=${TZ}
|
TZ=${TZ}
|
||||||
MODE=${MODE}
|
MODE=${MODE}
|
||||||
|
LOG_LEVEL=${LOG_LEVEL}
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
"
|
"
|
||||||
|
|
||||||
@ -28,26 +29,26 @@ MODE=${MODE}
|
|||||||
if [[ ! "${PUID}" -eq 0 ]] && [[ ! "${PGID}" -eq 0 ]]; then
|
if [[ ! "${PUID}" -eq 0 ]] && [[ ! "${PGID}" -eq 0 ]]; then
|
||||||
echo "Executing usermod..."
|
echo "Executing usermod..."
|
||||||
mkdir "/tmp/temphome"
|
mkdir "/tmp/temphome"
|
||||||
usermod -d "/tmp/temphome" mrmeeb
|
usermod -d "/tmp/temphome" cronicle
|
||||||
usermod -o -u "${PUID}" mrmeeb
|
usermod -o -u "${PUID}" cronicle
|
||||||
usermod -d /config mrmeeb
|
usermod -d /config cronicle
|
||||||
rm -rf "/tmp/temphome"
|
rm -rf "/tmp/temphome"
|
||||||
groupmod -o -g "${PGID}" mrmeeb
|
groupmod -o -g "${PGID}" cronicle
|
||||||
else
|
else
|
||||||
echo "Running as root is not supported, please fix your PUID and PGID!"
|
echo "Running as root is not supported, please fix your PUID and PGID!"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Checking permissions in /config and /app (this can take some time)."
|
echo "Checking permissions in /config and /app."
|
||||||
|
|
||||||
if [ ! "$(stat -c %u /app)" -eq "${PUID}" ] || [ ! "$(stat -c %g /app)" -eq "${PGID}" ]
|
if [ ! "$(stat -c %u /app)" -eq "${PUID}" ] || [ ! "$(stat -c %g /app)" -eq "${PGID}" ]
|
||||||
then
|
then
|
||||||
echo "Fixing permissions for /app."
|
echo "Fixing permissions for /app (this can take some time)."
|
||||||
chown -R mrmeeb:mrmeeb /app
|
chown -R cronicle:cronicle /app
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! "$(stat -c %u /config)" -eq "${PUID}" ] || [ ! "$(stat -c %g /config)" -eq "${PGID}" ]
|
if [ ! "$(stat -c %u /config)" -eq "${PUID}" ] || [ ! "$(stat -c %g /config)" -eq "${PGID}" ]
|
||||||
then
|
then
|
||||||
echo "Fixing permissions for /config."
|
echo "Fixing permissions for /config (this can take some time)."
|
||||||
chown -R mrmeeb:mrmeeb /config
|
chown -R cronicle:cronicle /config
|
||||||
fi
|
fi
|
||||||
@ -42,9 +42,19 @@ then
|
|||||||
#Copying config directory to /config/cronicle/conf if not already there, then linking back into Cronicle
|
#Copying config directory to /config/cronicle/conf if not already there, then linking back into Cronicle
|
||||||
if [ ! -d /config/cronicle/conf ]
|
if [ ! -d /config/cronicle/conf ]
|
||||||
then
|
then
|
||||||
|
|
||||||
|
echo "Config dir is missing, creating."
|
||||||
|
|
||||||
cp -r /app/cronicle/conf /config/cronicle/conf
|
cp -r /app/cronicle/conf /config/cronicle/conf
|
||||||
rm -rf /app/cronicle/conf
|
rm -rf /app/cronicle/conf
|
||||||
ln -s /config/cronicle/conf /app/cronicle/conf
|
ln -s /config/cronicle/conf /app/cronicle/conf
|
||||||
|
else
|
||||||
|
|
||||||
|
echo "Config dir already exists. Doesn't need creating."
|
||||||
|
echo "Linking persistent config dir back into Cronicle."
|
||||||
|
rm -rf /app/cronicle/conf
|
||||||
|
ln -s /config/cronicle/conf /app/cronicle/conf
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f /config/cronicle/data/.setup_done ]
|
if [ ! -f /config/cronicle/data/.setup_done ]
|
||||||
@ -60,8 +70,6 @@ then
|
|||||||
rm -rf /app/cronicle/data
|
rm -rf /app/cronicle/data
|
||||||
ln -s /config/cronicle/data /app/cronicle/data
|
ln -s /config/cronicle/data /app/cronicle/data
|
||||||
|
|
||||||
#exec node /app/cronicle/lib/main.js --color 1
|
|
||||||
|
|
||||||
else
|
else
|
||||||
|
|
||||||
echo "Setup already completed."
|
echo "Setup already completed."
|
||||||
@ -69,8 +77,6 @@ then
|
|||||||
rm -rf /app/cronicle/data
|
rm -rf /app/cronicle/data
|
||||||
ln -s /config/cronicle/data /app/cronicle/data
|
ln -s /config/cronicle/data /app/cronicle/data
|
||||||
|
|
||||||
#exec node /app/cronicle/lib/main.js --color 1
|
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
elif [ $MODE == "worker" ]
|
elif [ $MODE == "worker" ]
|
||||||
@ -89,9 +95,7 @@ then
|
|||||||
|
|
||||||
#Removing default config.json and linking provided one back into Cronicle
|
#Removing default config.json and linking provided one back into Cronicle
|
||||||
rm -rf /app/cronicle/conf/config.json
|
rm -rf /app/cronicle/conf/config.json
|
||||||
ln -s /config/config.json /app/cronicle/conf/config.json
|
ln -s /config/cronicle/conf/config.json /app/cronicle/conf/config.json
|
||||||
|
|
||||||
#exec node /app/cronicle/lib/main.js --color 1
|
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -101,7 +105,20 @@ else
|
|||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#echo "Applying permissions to /config and /app (this can take a while on first run or after PUID/PGID changes)"
|
#Expose log directory
|
||||||
#chmod "=rwx" /config
|
if [ ! -d /config/cronicle/logs ]
|
||||||
#chown -R mrmeeb:mrmeeb /config
|
then
|
||||||
#chown -R mrmeeb:mrmeeb /app
|
|
||||||
|
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
|
||||||
@ -1 +1 @@
|
|||||||
exec s6-setuidgid mrmeeb /cronicle-prepare.sh
|
exec s6-setuidgid cronicle /cronicle-prepare.sh
|
||||||
@ -1,3 +1,3 @@
|
|||||||
#!/command/with-contenv bash
|
#!/command/with-contenv bash
|
||||||
# shellcheck shell=bash
|
# shellcheck shell=bash
|
||||||
exec s6-setuidgid mrmeeb node /app/cronicle/lib/main.js --color 1
|
exec s6-setuidgid cronicle node /app/cronicle/lib/main.js --debug_level ${LOG_LEVEL} --color ${CRONICLE_color}
|
||||||
Reference in New Issue
Block a user