8 Commits

Author SHA1 Message Date
951628c591 Update dependency apprise to v1.9.0
Some checks failed
renovate/stability-days Updates have met minimum release age requirement
Test Pull Request / Build Image (pull_request) Has been cancelled
Test Pull Request / Notify (pull_request) Has been cancelled
2024-09-09 18:01:10 +00:00
9e12fde518 Update dependency apprise to v1.8.1
All checks were successful
renovate/stability-days Updates have met minimum release age requirement
Test Pull Request / Build Image (pull_request) Successful in 4m46s
Test Pull Request / Notify (pull_request) Successful in 3s
Build Image / Validate Image (push) Successful in 1m38s
Build Image / Publish Image (push) Successful in 5m22s
Build Image / Notify (push) Successful in 3s
2024-08-03 20:00:11 +00:00
7e3360f187 Update alpine Docker tag to v3.20.2
All checks were successful
Test Pull Request / Build Image (pull_request) Successful in 4m48s
Test Pull Request / Notify (pull_request) Successful in 2s
Build Image / Validate Image (push) Successful in 2m3s
Build Image / Publish Image (push) Successful in 5m12s
Build Image / Notify (push) Successful in 2s
2024-07-22 22:00:12 +00:00
9b848e7edb Delay Renovate from picking up new releases by 7 days (#31) [skip ci]
When Renovate acts too quickly, weirdness can occur, especially when more core packages like Alpine are updated - things haven't had time to propogate if we start updating less than an hour after the release. Waiting 7 days should give plenty of time for other maintainers to update their packages and for things to distribute.

Reviewed-on: #31
2024-06-22 15:37:03 +00:00
4ca8981d0c Update alpine Docker tag to v3.20.1
All checks were successful
Test Pull Request / Build Image (pull_request) Successful in 4m49s
Test Pull Request / Notify (pull_request) Successful in 4s
Build Image / Validate Image (push) Successful in 2m27s
Build Image / Publish Image (push) Successful in 4m57s
Build Image / Notify (push) Successful in 3s
2024-06-20 19:00:12 +00:00
f6d067b561 Fix s6-overlay format error (#29)
All checks were successful
Build Image / Validate Image (push) Successful in 2m29s
Build Image / Publish Image (push) Successful in 4m58s
Build Image / Notify (push) Successful in 3s
Build Tagged Release Image / Build Image (push) Successful in 4m46s
Build Tagged Release Image / Create Release (push) Successful in 19s
Build Tagged Release Image / Notify (push) Successful in 2s
Add missing shebangs that cause `S6 warning: unable to spawn ./finish: Exec format error` when `ONESHOT=true`. Fixes #28

Also brings the method for killing a container via service exit inline with s6's documented method

Reviewed-on: #29
2024-06-15 15:55:18 +00:00
2962b45496 Update dependency just-containers/s6-overlay to v3.2.0.0
All checks were successful
Test Pull Request / Build Image (pull_request) Successful in 4m23s
Test Pull Request / Notify (pull_request) Successful in 4s
Build Image / Validate Image (push) Successful in 1m40s
Build Image / Publish Image (push) Successful in 4m58s
Build Image / Notify (push) Successful in 3s
2024-06-07 15:00:12 +00:00
535a33506b Update certbot to v2.11.0
All checks were successful
Test Pull Request / Build Image (pull_request) Successful in 4m37s
Test Pull Request / Notify (pull_request) Successful in 3s
Build Image / Validate Image (push) Successful in 2m32s
Build Image / Publish Image (push) Successful in 4m53s
Build Image / Notify (push) Successful in 3s
2024-06-06 08:00:17 +00:00
6 changed files with 26 additions and 8 deletions

View File

@ -1,4 +1,4 @@
FROM alpine:3.20.0 as base
FROM alpine:3.20.2 as base
ARG TARGETARCH
FROM base AS base-amd64
@ -9,7 +9,7 @@ ENV S6_OVERLAY_ARCH=aarch64
FROM base-${TARGETARCH}${TARGETVARIANT}
ARG S6_OVERLAY_VERSION="3.1.6.2"
ARG S6_OVERLAY_VERSION="3.2.0.0"
# Core variables
ENV PUID=1000

View File

@ -4,6 +4,7 @@
"major": {
"dependencyDashboardApproval": true
},
"minimumReleaseAge": "7 days",
"customManagers": [
{
"customType": "regex",

View File

@ -1,5 +1,5 @@
# For pinning Python packages to then be parsed by Renovate
certbot ==2.10.0
certbot-dns-cloudflare ==2.10.0
apprise ==1.8.0
certbot ==2.11.0
certbot-dns-cloudflare ==2.11.0
apprise ==1.9.0

View File

@ -4,6 +4,7 @@
if [ $ONE_SHOT == "true" ]; then
# Cleanly kill container by sending kill signal to supervisor process
kill 1
echo 0 > /run/s6-linux-init-container-results/exitcode
/run/s6/basedir/bin/halt
fi

View File

@ -1 +1,9 @@
#!/command/with-contenv bash
# shellcheck shell=bash
if [ $ONE_SHOT == "false" ]; then
# Export exit code if not a ONE_SHOT
echo "$e" > /run/s6-linux-init-container-results/exitcode
fi

View File

@ -1 +1,9 @@
#!/command/with-contenv bash
# shellcheck shell=bash
if [ $ONE_SHOT == "false" ]; then
# Export exit code if not a ONE_SHOT
echo "$e" > /run/s6-linux-init-container-results/exitcode
fi