Compare commits
45 Commits
2706c094d6
...
1.0.3
| Author | SHA1 | Date | |
|---|---|---|---|
| 06c1bba849 | |||
| 79db8733c5 | |||
| 882f1faa37 | |||
| 0b89350609 | |||
| 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 |
166
.drone.yml
166
.drone.yml
@ -1,12 +1,11 @@
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: build-main-images
|
||||
name: build-release-images
|
||||
trigger:
|
||||
event:
|
||||
exclude:
|
||||
- pull_request
|
||||
ref:
|
||||
- refs/heads/main
|
||||
- refs/tags/**
|
||||
|
||||
platform:
|
||||
@ -19,29 +18,17 @@ steps:
|
||||
image: docker:git
|
||||
commands:
|
||||
- git fetch --tags
|
||||
when:
|
||||
ref:
|
||||
- refs/tags/**
|
||||
depends_on:
|
||||
- clone
|
||||
|
||||
# Set tags for main branch
|
||||
- name: make-tags
|
||||
image: node
|
||||
commands:
|
||||
- echo -n "${DRONE_COMMIT_SHA:0:8}, latest" > .tags
|
||||
when:
|
||||
ref:
|
||||
- refs/heads/main
|
||||
|
||||
- name: make-tags-release
|
||||
image: node
|
||||
commands:
|
||||
- echo -n "${DRONE_TAG}, latest" > .tags
|
||||
when:
|
||||
ref:
|
||||
- refs/tags/**
|
||||
depends_on:
|
||||
- get-tags
|
||||
|
||||
# Build containers from main branch
|
||||
- name: build
|
||||
- name: build-gitea
|
||||
image: thegeeklab/drone-docker-buildx
|
||||
privileged: true
|
||||
settings:
|
||||
@ -55,17 +42,45 @@ steps:
|
||||
platforms:
|
||||
- linux/arm64
|
||||
- linux/amd64
|
||||
depends_on:
|
||||
- make-tags
|
||||
|
||||
- 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
|
||||
|
||||
- name: release-gitea
|
||||
image: goreleaser/goreleaser
|
||||
environment:
|
||||
GITEA_TOKEN:
|
||||
from_secret: gitea_token
|
||||
commands:
|
||||
- goreleaser release
|
||||
when:
|
||||
ref:
|
||||
- refs/tags/**
|
||||
- goreleaser release -f .goreleaser-gitea.yaml
|
||||
depends_on:
|
||||
- build-gitea
|
||||
|
||||
- name: release-github
|
||||
image: goreleaser/goreleaser
|
||||
environment:
|
||||
GITHUB_TOKEN:
|
||||
from_secret: github_token
|
||||
commands:
|
||||
- goreleaser release -f .goreleaser-github.yaml
|
||||
depends_on:
|
||||
- build-github
|
||||
|
||||
- name: notify
|
||||
image: plugins/slack
|
||||
@ -76,6 +91,83 @@ steps:
|
||||
settings:
|
||||
webhook:
|
||||
from_secret: slack_webhook
|
||||
depends_on:
|
||||
- release-gitea
|
||||
- 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-gitea
|
||||
|
||||
---
|
||||
kind: pipeline
|
||||
@ -100,7 +192,7 @@ steps:
|
||||
- echo -n "develop-${DRONE_COMMIT_SHA:0:8}, develop" > .tags
|
||||
|
||||
# Build containers from develop branch
|
||||
- name: build
|
||||
- name: build-gitea
|
||||
image: thegeeklab/drone-docker-buildx
|
||||
privileged: true
|
||||
settings:
|
||||
@ -114,6 +206,25 @@ steps:
|
||||
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
|
||||
@ -123,4 +234,7 @@ steps:
|
||||
- failure
|
||||
settings:
|
||||
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
|
||||
@ -1,3 +1,5 @@
|
||||
dist: dist-gitea
|
||||
|
||||
build:
|
||||
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:'
|
||||
@ -10,7 +10,7 @@ ENV S6_OVERLAY_ARCH=aarch64
|
||||
FROM base-${TARGETARCH}${TARGETVARIANT}
|
||||
|
||||
ARG S6_OVERLAY_VERSION=3.1.5.0
|
||||
ARG CRONICLE_EDGE_VERSION=1.6.2
|
||||
ARG CRONICLE_EDGE_VERSION=.1.6.3
|
||||
|
||||
ENV CRONICLE_foreground=1
|
||||
ENV CRONICLE_echo=1
|
||||
|
||||
@ -8,7 +8,7 @@ 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) - since I'm currently not also publishing them to ghcr.io
|
||||
- :whale2: [Containers](https://git.mrmeeb.stream/MrMeeb/-/packages/container/cronicle/latest) (also published to 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)
|
||||
|
||||
Reference in New Issue
Block a user