Compare commits
41 Commits
0729a4454b
...
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 |
105
.drone.yml
105
.drone.yml
@ -1,11 +1,12 @@
|
|||||||
kind: pipeline
|
kind: pipeline
|
||||||
type: docker
|
type: docker
|
||||||
name: build-release-images
|
name: build-main-images
|
||||||
trigger:
|
trigger:
|
||||||
event:
|
event:
|
||||||
exclude:
|
exclude:
|
||||||
- pull_request
|
- pull_request
|
||||||
ref:
|
ref:
|
||||||
|
- refs/heads/main
|
||||||
- refs/tags/**
|
- refs/tags/**
|
||||||
|
|
||||||
platform:
|
platform:
|
||||||
@ -18,16 +19,36 @@ steps:
|
|||||||
image: docker:git
|
image: docker:git
|
||||||
commands:
|
commands:
|
||||||
- git fetch --tags
|
- git fetch --tags
|
||||||
|
when:
|
||||||
|
ref:
|
||||||
|
- refs/tags/**
|
||||||
depends_on:
|
depends_on:
|
||||||
- clone
|
- clone
|
||||||
|
|
||||||
|
# Set tags for main branch
|
||||||
- name: make-tags
|
- name: make-tags
|
||||||
image: node
|
image: node
|
||||||
commands:
|
commands:
|
||||||
- echo -n "${DRONE_TAG}, latest" > .tags
|
- echo -n "${DRONE_COMMIT_SHA:0:8}, latest" > .tags
|
||||||
|
when:
|
||||||
|
ref:
|
||||||
|
- refs/heads/main
|
||||||
depends_on:
|
depends_on:
|
||||||
- get-tags
|
- get-tags
|
||||||
|
- clone
|
||||||
|
|
||||||
|
- name: make-tags-release
|
||||||
|
image: node
|
||||||
|
commands:
|
||||||
|
- echo -n "${DRONE_TAG}, latest" > .tags
|
||||||
|
when:
|
||||||
|
ref:
|
||||||
|
- refs/tags/**
|
||||||
|
depends_on:
|
||||||
|
- get-tags
|
||||||
|
- clone
|
||||||
|
|
||||||
|
# Build containers from main branch
|
||||||
- name: build-gitea
|
- name: build-gitea
|
||||||
image: thegeeklab/drone-docker-buildx
|
image: thegeeklab/drone-docker-buildx
|
||||||
privileged: true
|
privileged: true
|
||||||
@ -44,6 +65,7 @@ steps:
|
|||||||
- linux/amd64
|
- linux/amd64
|
||||||
depends_on:
|
depends_on:
|
||||||
- make-tags
|
- make-tags
|
||||||
|
- make-tags-release
|
||||||
|
|
||||||
- name: build-github
|
- name: build-github
|
||||||
image: thegeeklab/drone-docker-buildx
|
image: thegeeklab/drone-docker-buildx
|
||||||
@ -61,6 +83,7 @@ steps:
|
|||||||
- linux/amd64
|
- linux/amd64
|
||||||
depends_on:
|
depends_on:
|
||||||
- make-tags
|
- make-tags
|
||||||
|
- make-tags-release
|
||||||
|
|
||||||
- name: release-gitea
|
- name: release-gitea
|
||||||
image: goreleaser/goreleaser
|
image: goreleaser/goreleaser
|
||||||
@ -69,6 +92,9 @@ steps:
|
|||||||
from_secret: gitea_token
|
from_secret: gitea_token
|
||||||
commands:
|
commands:
|
||||||
- goreleaser release -f .goreleaser-gitea.yaml
|
- goreleaser release -f .goreleaser-gitea.yaml
|
||||||
|
when:
|
||||||
|
ref:
|
||||||
|
- refs/tags/**
|
||||||
depends_on:
|
depends_on:
|
||||||
- build-gitea
|
- build-gitea
|
||||||
|
|
||||||
@ -79,6 +105,9 @@ steps:
|
|||||||
from_secret: github_token
|
from_secret: github_token
|
||||||
commands:
|
commands:
|
||||||
- goreleaser release -f .goreleaser-github.yaml
|
- goreleaser release -f .goreleaser-github.yaml
|
||||||
|
when:
|
||||||
|
ref:
|
||||||
|
- refs/tags/**
|
||||||
depends_on:
|
depends_on:
|
||||||
- build-github
|
- build-github
|
||||||
|
|
||||||
@ -94,78 +123,6 @@ steps:
|
|||||||
depends_on:
|
depends_on:
|
||||||
- release-gitea
|
- release-gitea
|
||||||
- release-github
|
- release-github
|
||||||
|
|
||||||
---
|
|
||||||
kind: pipeline
|
|
||||||
type: docker
|
|
||||||
name: build-main-images
|
|
||||||
trigger:
|
|
||||||
event:
|
|
||||||
exclude:
|
|
||||||
- pull_request
|
|
||||||
ref:
|
|
||||||
- refs/heads/main
|
|
||||||
|
|
||||||
platform:
|
|
||||||
os: linux
|
|
||||||
arch: amd64
|
|
||||||
|
|
||||||
steps:
|
|
||||||
|
|
||||||
- name: make-tags
|
|
||||||
image: node
|
|
||||||
commands:
|
|
||||||
- echo -n "${DRONE_COMMIT_SHA:0:8}, latest" > .tags
|
|
||||||
when:
|
|
||||||
ref:
|
|
||||||
- refs/heads/main
|
|
||||||
depends_on:
|
|
||||||
- clone
|
|
||||||
|
|
||||||
- name: build-gitea
|
|
||||||
image: thegeeklab/drone-docker-buildx
|
|
||||||
privileged: true
|
|
||||||
settings:
|
|
||||||
provenance: false
|
|
||||||
registry: git.mrmeeb.stream
|
|
||||||
username:
|
|
||||||
from_secret: docker_username
|
|
||||||
password:
|
|
||||||
from_secret: docker_password
|
|
||||||
repo: git.mrmeeb.stream/mrmeeb/cronicle
|
|
||||||
platforms:
|
|
||||||
- linux/arm64
|
|
||||||
- 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
|
|
||||||
image: plugins/slack
|
|
||||||
when:
|
|
||||||
status:
|
|
||||||
- success
|
|
||||||
- failure
|
|
||||||
settings:
|
|
||||||
webhook:
|
|
||||||
from_secret: slack_webhook
|
|
||||||
depends_on:
|
|
||||||
- build-github
|
- build-github
|
||||||
- build-gitea
|
- build-gitea
|
||||||
|
|
||||||
|
|||||||
@ -10,7 +10,7 @@ ENV S6_OVERLAY_ARCH=aarch64
|
|||||||
FROM base-${TARGETARCH}${TARGETVARIANT}
|
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.3
|
ARG CRONICLE_EDGE_VERSION=1.6.2
|
||||||
|
|
||||||
ENV CRONICLE_foreground=1
|
ENV CRONICLE_foreground=1
|
||||||
ENV CRONICLE_echo=1
|
ENV CRONICLE_echo=1
|
||||||
@ -23,7 +23,7 @@ ENV TZ=UTC
|
|||||||
ENV LOG_LEVEL=9
|
ENV LOG_LEVEL=9
|
||||||
|
|
||||||
#Get required packages
|
#Get required packages
|
||||||
RUN apk update && apk add tzdata curl shadow bash xz git procps nodejs npm nano openssl
|
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 && \
|
||||||
@ -57,6 +57,5 @@ RUN chmod +x /cronicle-prepare.sh && \
|
|||||||
chown -R ${PUID}:${PGID} /app /config
|
chown -R ${PUID}:${PGID} /app /config
|
||||||
|
|
||||||
EXPOSE 3012
|
EXPOSE 3012
|
||||||
EXPOSE 3013
|
|
||||||
|
|
||||||
ENTRYPOINT [ "/init" ]
|
ENTRYPOINT [ "/init" ]
|
||||||
29
README.md
29
README.md
@ -92,35 +92,6 @@ services:
|
|||||||
|
|
||||||
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.
|
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.
|
||||||
|
|
||||||
## Reverse Proxying
|
|
||||||
|
|
||||||
For a single manager behind a reverse proxy, you may need to specify a specific route for the web-socket connections.
|
|
||||||
|
|
||||||
An example using nginx:
|
|
||||||
|
|
||||||
```
|
|
||||||
location /socket.io/ {
|
|
||||||
client_max_body_size 2048m;
|
|
||||||
proxy_read_timeout 86400s;
|
|
||||||
proxy_send_timeout 86400s;
|
|
||||||
proxy_set_header X-Forwarded-Host $host;
|
|
||||||
proxy_set_header X-Forwarded-Server $host;
|
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
|
||||||
proxy_set_header Host $host;
|
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
||||||
proxy_http_version 1.1;
|
|
||||||
proxy_redirect off;
|
|
||||||
proxy_set_header Upgrade $http_upgrade;
|
|
||||||
proxy_set_header Connection "upgrade";
|
|
||||||
|
|
||||||
proxy_pass http://localhost:3012/socket.io/;
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
Source: https://github.com/jhuckaby/Cronicle/issues/535
|
|
||||||
|
|
||||||
Load-balancing between multiple managers, as described [here](https://github.com/jhuckaby/Cronicle/blob/master/docs/Setup.md#load-balancers), has not been tested, and could behave strangely due to docker DNS.
|
|
||||||
|
|
||||||
## Ports
|
## Ports
|
||||||
|
|
||||||
|Port |Description|
|
|Port |Description|
|
||||||
|
|||||||
@ -28,11 +28,9 @@ fi
|
|||||||
|
|
||||||
if [ ! -d /config/cronicle ]
|
if [ ! -d /config/cronicle ]
|
||||||
then
|
then
|
||||||
|
|
||||||
echo "Directory /config/cronicle not found. Creating."
|
echo "Directory /config/cronicle not found. Creating."
|
||||||
|
|
||||||
mkdir /config/cronicle
|
mkdir /config/cronicle
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#Detecting what mode Cronicle should be started in
|
#Detecting what mode Cronicle should be started in
|
||||||
@ -50,27 +48,15 @@ then
|
|||||||
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
|
else
|
||||||
|
|
||||||
echo "Config dir already exists. Doesn't need creating."
|
echo "Config dir already exists. Doesn't need creating."
|
||||||
echo "Linking persistent config dir back into Cronicle."
|
echo "Linking persistent config dir back into Cronicle."
|
||||||
|
|
||||||
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
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f /config/cronicle/conf/ssl.crt ] || [ ! -f /config/cronicle/conf/ssl.key ]
|
|
||||||
then
|
|
||||||
|
|
||||||
echo "One or both SSL components are missing. Generating."
|
|
||||||
|
|
||||||
rm -f /config/cronicle/conf/ssl.crt /config/cronicle/conf/ssl.key
|
|
||||||
openssl req -x509 -newkey rsa:4096 -keyout /config/cronicle/conf/ssl.key -out /config/cronicle/conf/ssl.crt -sha256 -days 3650 -nodes -subj "/C=XX/ST=StateName/L=CityName/O=CompanyName/OU=CompanySectionName/CN=CommonNameOrHostname"
|
|
||||||
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ ! -f /config/cronicle/data/.setup_done ]
|
if [ ! -f /config/cronicle/data/.setup_done ]
|
||||||
then
|
then
|
||||||
|
|
||||||
@ -102,8 +88,6 @@ then
|
|||||||
then
|
then
|
||||||
|
|
||||||
echo "No config found. Copy config.json from the manager server and place it in /config/cronicle/conf dir."
|
echo "No config found. Copy config.json from the manager server and place it in /config/cronicle/conf dir."
|
||||||
echo "Don't forget to also copy the SSL certs if you're using SSL."
|
|
||||||
|
|
||||||
mkdir -p /config/cronicle/conf
|
mkdir -p /config/cronicle/conf
|
||||||
exit 0
|
exit 0
|
||||||
|
|
||||||
@ -130,12 +114,10 @@ then
|
|||||||
cp -r /app/cronicle/logs /config/cronicle/logs
|
cp -r /app/cronicle/logs /config/cronicle/logs
|
||||||
rm -rf /app/cronicle/logs
|
rm -rf /app/cronicle/logs
|
||||||
ln -s /config/cronicle/logs /app/cronicle/logs
|
ln -s /config/cronicle/logs /app/cronicle/logs
|
||||||
|
|
||||||
else
|
else
|
||||||
|
|
||||||
echo "Logs dir already exists. Doesn't need creating."
|
echo "Logs dir already exists. Doesn't need creating."
|
||||||
echo "Linking persistent logs dir back into Cronicle."
|
echo "Linking persistent logs dir back into Cronicle."
|
||||||
|
|
||||||
rm -rf /app/cronicle/logs
|
rm -rf /app/cronicle/logs
|
||||||
ln -s /config/cronicle/logs /app/cronicle/logs
|
ln -s /config/cronicle/logs /app/cronicle/logs
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user