Compare commits
8 Commits
1.2.0
...
951628c591
| Author | SHA1 | Date | |
|---|---|---|---|
|
951628c591
|
|||
|
9e12fde518
|
|||
|
7e3360f187
|
|||
|
9b848e7edb
|
|||
|
4ca8981d0c
|
|||
|
f6d067b561
|
|||
|
2962b45496
|
|||
|
535a33506b
|
@ -1,4 +1,4 @@
|
|||||||
FROM alpine:3.20.0 as base
|
FROM alpine:3.20.2 as base
|
||||||
ARG TARGETARCH
|
ARG TARGETARCH
|
||||||
|
|
||||||
FROM base AS base-amd64
|
FROM base AS base-amd64
|
||||||
@ -9,7 +9,7 @@ ENV S6_OVERLAY_ARCH=aarch64
|
|||||||
|
|
||||||
FROM base-${TARGETARCH}${TARGETVARIANT}
|
FROM base-${TARGETARCH}${TARGETVARIANT}
|
||||||
|
|
||||||
ARG S6_OVERLAY_VERSION="3.1.6.2"
|
ARG S6_OVERLAY_VERSION="3.2.0.0"
|
||||||
|
|
||||||
# Core variables
|
# Core variables
|
||||||
ENV PUID=1000
|
ENV PUID=1000
|
||||||
|
|||||||
@ -4,6 +4,7 @@
|
|||||||
"major": {
|
"major": {
|
||||||
"dependencyDashboardApproval": true
|
"dependencyDashboardApproval": true
|
||||||
},
|
},
|
||||||
|
"minimumReleaseAge": "7 days",
|
||||||
"customManagers": [
|
"customManagers": [
|
||||||
{
|
{
|
||||||
"customType": "regex",
|
"customType": "regex",
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
# For pinning Python packages to then be parsed by Renovate
|
# For pinning Python packages to then be parsed by Renovate
|
||||||
|
|
||||||
certbot ==2.10.0
|
certbot ==2.11.0
|
||||||
certbot-dns-cloudflare ==2.10.0
|
certbot-dns-cloudflare ==2.11.0
|
||||||
apprise ==1.8.0
|
apprise ==1.9.0
|
||||||
@ -4,6 +4,7 @@
|
|||||||
if [ $ONE_SHOT == "true" ]; then
|
if [ $ONE_SHOT == "true" ]; then
|
||||||
|
|
||||||
# Cleanly kill container by sending kill signal to supervisor process
|
# 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
|
fi
|
||||||
@ -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
|
echo "$e" > /run/s6-linux-init-container-results/exitcode
|
||||||
|
|
||||||
|
fi
|
||||||
@ -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
|
echo "$e" > /run/s6-linux-init-container-results/exitcode
|
||||||
|
|
||||||
|
fi
|
||||||
Reference in New Issue
Block a user