Skip to content

Commit fba2853

Browse files
committed
Caddy v2.11.4
1 parent ed5afa9 commit fba2853

9 files changed

Lines changed: 27 additions & 27 deletions

File tree

2.11/alpine/Dockerfile

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,21 @@ RUN set -eux; \
1818
wget -O /usr/share/caddy/index.html "https://github.com/caddyserver/dist/raw/33ae08ff08d168572df2956ed14fbc4949880d94/welcome/index.html"
1919

2020
# https://github.com/caddyserver/caddy/releases
21-
ENV CADDY_VERSION=v2.11.3
21+
ENV CADDY_VERSION=v2.11.4
2222

2323
RUN set -eux; \
2424
apkArch="$(apk --print-arch)"; \
2525
case "$apkArch" in \
26-
x86_64) binArch='amd64'; checksum='ee886eceda0ff9f30610d3be9b5b594026591e19add6b3961a341c72abe468e5eac9d7c2c2450bbb8420db1f827b954521f9336be4872f81090b8618adf8815a' ;; \
27-
armhf) binArch='armv6'; checksum='84b3baef4f1850a8a75ab38f1da8c08eea5a19a9081ecb62af2658e7c9919203ef1907233e8b27b4dc4ddd6f0a8f57893d10190c611f15e2325ea9962f2073d5' ;; \
28-
armv7) binArch='armv7'; checksum='7ae0bcf5a1060ac0bcb0c9d454f21f70b2655c2e883a3a1617069d12193eae650e4410807cc50e216b01775cb0e0c16ab84490a03454153d189cfe5775cf775c' ;; \
29-
aarch64) binArch='arm64'; checksum='bd06996e1612cf5e9770dc7134313067ef3fdfde43b1a2196004906006de779372dcf7a0e7c7fb0890c23791179f12be4625f1b6e666a2abf37e8aff4c3a1826' ;; \
30-
ppc64el|ppc64le) binArch='ppc64le'; checksum='e1f33af0869f8234fc28575ee6eef04f7dfd0b3a6255be6efdc3aa3d05d05db833c4571e90287908eae93da1383e07e93ed9c6ad0199ccc0f1fe798cb88f43ce' ;; \
31-
riscv64) binArch='riscv64'; checksum='9b0f3f8ab8816d57878f251e7913d7622340dff9092770397db740ca5e9930b5718c67231c97ef6cd3ba886de57060fc01ca1ab018d9cac1d0878092312fd280' ;; \
32-
s390x) binArch='s390x'; checksum='eb71dfa44b5ed5db32af566b6fa2e3f711df828b847c55f250ff8cfd9af22ab79048f3bc8d9756ac06683c54d46ba2e11c6b109fdda16c6a28c29a88f327d9e1' ;; \
26+
x86_64) binArch='amd64'; checksum='8220d1f013b6f27510247b2360c9e0ca9f018feebd82515f07635318b34ff9777ccc8fd0b6e6f2486ce3a33fe389fbb7db12d05baa474f4587509fb4f5ebf1c9' ;; \
27+
armhf) binArch='armv6'; checksum='d4300f3e0d9af290bebd65721edb145025db680e6a7e6ad2ed917bf8c9d6e72abe788f720cdf046fe210ca1b43f9a7ddcda07a634296d3012527299ab78cc3ed' ;; \
28+
armv7) binArch='armv7'; checksum='081959488f0d0da2725aea2d01330bc1501b3e52c1147b6c9da1da007524890ceba6845415355ba8f97aa29535e6f37521da1d7f10c5c63c55bb86c5d9f51bfb' ;; \
29+
aarch64) binArch='arm64'; checksum='d5a7c423853c24a799765e0e8210d5c7c22a8f56ed37a3cae2fb9f58be138853c02b4efd6b59d576e6d8c7c0d30b9c1592deeaa6a536ff69bcca23b8c1ea709c' ;; \
30+
ppc64el|ppc64le) binArch='ppc64le'; checksum='74b11a1f098517be7e6b11c7f7da6b5a0be9a18634f9a575c5ba6f5518a1bcbe4fe903f6c32a6d7ba47464fcaf12fde95e5f301cd829c4f41633484b0a4f817a' ;; \
31+
riscv64) binArch='riscv64'; checksum='05187bfc217a67ab32bbb0ebb9bd27ccbac0f80e41ad47dba272d10c34b1bf00f67a57ba05230eefa791898b2e2f40158631d81c3639cb514d59ac6d4976b044' ;; \
32+
s390x) binArch='s390x'; checksum='fc2cd4294bf43e6645ee639532361c8e432a2cc7639134cfa0f0c44724146f4d9a278542ed56399e53aaac857b767d26ae748e754a790d106dd192c4c91c09f5' ;; \
3333
*) echo >&2 "error: unsupported architecture ($apkArch)"; exit 1 ;;\
3434
esac; \
35-
wget -O /tmp/caddy.tar.gz "https://github.com/caddyserver/caddy/releases/download/v2.11.3/caddy_2.11.3_linux_${binArch}.tar.gz"; \
35+
wget -O /tmp/caddy.tar.gz "https://github.com/caddyserver/caddy/releases/download/v2.11.4/caddy_2.11.4_linux_${binArch}.tar.gz"; \
3636
echo "$checksum /tmp/caddy.tar.gz" | sha512sum -c; \
3737
tar x -z -f /tmp/caddy.tar.gz -C /usr/bin caddy; \
3838
rm -f /tmp/caddy.tar.gz; \
@@ -44,7 +44,7 @@ RUN set -eux; \
4444
ENV XDG_CONFIG_HOME=/config
4545
ENV XDG_DATA_HOME=/data
4646

47-
LABEL org.opencontainers.image.version=v2.11.3
47+
LABEL org.opencontainers.image.version=v2.11.4
4848
LABEL org.opencontainers.image.title=Caddy
4949
LABEL org.opencontainers.image.description="a powerful, enterprise-ready, open source web server with automatic HTTPS written in Go"
5050
LABEL org.opencontainers.image.url=https://caddyserver.com

2.11/builder/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ RUN apk add --no-cache \
88

99
ENV XCADDY_VERSION=v0.4.5
1010
# Configures xcaddy to build with this version of Caddy
11-
ENV CADDY_VERSION=v2.11.3
11+
ENV CADDY_VERSION=v2.11.4
1212
# Configures xcaddy to not clean up post-build (unnecessary in a container)
1313
ENV XCADDY_SKIP_CLEANUP=1
1414
# Sets capabilities for output caddy binary to be able to bind to privileged ports

2.11/windows-builder/ltsc2022/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPref
44

55
ENV XCADDY_VERSION=v0.4.5
66
# Configures xcaddy to build with this version of Caddy
7-
ENV CADDY_VERSION=v2.11.3
7+
ENV CADDY_VERSION=v2.11.4
88
# Configures xcaddy to not clean up post-build (unnecessary in a container)
99
ENV XCADDY_SKIP_CLEANUP=1
1010

2.11/windows-builder/ltsc2025/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPref
44

55
ENV XCADDY_VERSION=v0.4.5
66
# Configures xcaddy to build with this version of Caddy
7-
ENV CADDY_VERSION=v2.11.3
7+
ENV CADDY_VERSION=v2.11.4
88
# Configures xcaddy to not clean up post-build (unnecessary in a container)
99
ENV XCADDY_SKIP_CLEANUP=1
1010

2.11/windows-nanoserver/ltsc2022/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM mcr.microsoft.com/windows/nanoserver:ltsc2022
33
RUN mkdir c:\config && mkdir c:\data && mkdir c:\etc\caddy && mkdir c:\usr\share\caddy
44

55
# Copy Caddy binary from the Caddy Windows Server Core image
6-
COPY --from=caddy:2.11.3-windowsservercore-ltsc2022 c:/caddy.exe c:/caddy.exe
6+
COPY --from=caddy:2.11.4-windowsservercore-ltsc2022 c:/caddy.exe c:/caddy.exe
77

88
RUN curl -fsSL -o c:\etc\caddy\Caddyfile https://github.com/caddyserver/dist/raw/33ae08ff08d168572df2956ed14fbc4949880d94/config/Caddyfile
99
RUN curl -fsSL -o c:\usr\share\caddy\index.html https://github.com/caddyserver/dist/raw/33ae08ff08d168572df2956ed14fbc4949880d94/welcome/index.html
@@ -12,7 +12,7 @@ RUN curl -fsSL -o c:\usr\share\caddy\index.html https://github.com/caddyserver/d
1212
ENV XDG_CONFIG_HOME=c:/config
1313
ENV XDG_DATA_HOME=c:/data
1414

15-
LABEL org.opencontainers.image.version=v2.11.3
15+
LABEL org.opencontainers.image.version=v2.11.4
1616
LABEL org.opencontainers.image.title=Caddy
1717
LABEL org.opencontainers.image.description="a powerful, enterprise-ready, open source web server with automatic HTTPS written in Go"
1818
LABEL org.opencontainers.image.url=https://caddyserver.com

2.11/windows-nanoserver/ltsc2025/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM mcr.microsoft.com/windows/nanoserver:ltsc2025
33
RUN mkdir c:\config && mkdir c:\data && mkdir c:\etc\caddy && mkdir c:\usr\share\caddy
44

55
# Copy Caddy binary from the Caddy Windows Server Core image
6-
COPY --from=caddy:2.11.3-windowsservercore-ltsc2025 c:/caddy.exe c:/caddy.exe
6+
COPY --from=caddy:2.11.4-windowsservercore-ltsc2025 c:/caddy.exe c:/caddy.exe
77

88
RUN curl -fsSL -o c:\etc\caddy\Caddyfile https://github.com/caddyserver/dist/raw/33ae08ff08d168572df2956ed14fbc4949880d94/config/Caddyfile
99
RUN curl -fsSL -o c:\usr\share\caddy\index.html https://github.com/caddyserver/dist/raw/33ae08ff08d168572df2956ed14fbc4949880d94/welcome/index.html
@@ -12,7 +12,7 @@ RUN curl -fsSL -o c:\usr\share\caddy\index.html https://github.com/caddyserver/d
1212
ENV XDG_CONFIG_HOME=c:/config
1313
ENV XDG_DATA_HOME=c:/data
1414

15-
LABEL org.opencontainers.image.version=v2.11.3
15+
LABEL org.opencontainers.image.version=v2.11.4
1616
LABEL org.opencontainers.image.title=Caddy
1717
LABEL org.opencontainers.image.description="a powerful, enterprise-ready, open source web server with automatic HTTPS written in Go"
1818
LABEL org.opencontainers.image.url=https://caddyserver.com

2.11/windows/ltsc2022/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,20 @@ RUN mkdir /config; \
1414
-OutFile "/usr/share/caddy/index.html"
1515

1616
# https://github.com/caddyserver/caddy/releases
17-
ENV CADDY_VERSION=v2.11.3
17+
ENV CADDY_VERSION=v2.11.4
1818

1919
RUN Invoke-WebRequest \
20-
-Uri "https://github.com/caddyserver/caddy/releases/download/v2.11.3/caddy_2.11.3_windows_amd64.zip" \
20+
-Uri "https://github.com/caddyserver/caddy/releases/download/v2.11.4/caddy_2.11.4_windows_amd64.zip" \
2121
-OutFile "/caddy.zip"; \
22-
if (!(Get-FileHash -Path /caddy.zip -Algorithm SHA512).Hash.ToLower().Equals('338f5557a1554677875b79dbc4b10d008781111ad29223811e64217936fa5d58602ddd54724ef1cb1473b7ec07805cf5286d6aa1e810febde7e36daf497d791f')) { exit 1; }; \
22+
if (!(Get-FileHash -Path /caddy.zip -Algorithm SHA512).Hash.ToLower().Equals('cd5ccfd86a4b40732cf715890d0dca5bf3f63adefec5a7914de85adf240c60ce7e5d2791631b88ef9758e46b23bb1730e020b9c5d696889740b284ffd4788e35')) { exit 1; }; \
2323
Expand-Archive -Path "/caddy.zip" -DestinationPath "/" -Force; \
2424
Remove-Item "/caddy.zip" -Force
2525

2626
# See https://caddyserver.com/docs/conventions#file-locations for details
2727
ENV XDG_CONFIG_HOME=c:/config
2828
ENV XDG_DATA_HOME=c:/data
2929

30-
LABEL org.opencontainers.image.version=v2.11.3
30+
LABEL org.opencontainers.image.version=v2.11.4
3131
LABEL org.opencontainers.image.title=Caddy
3232
LABEL org.opencontainers.image.description="a powerful, enterprise-ready, open source web server with automatic HTTPS written in Go"
3333
LABEL org.opencontainers.image.url=https://caddyserver.com

2.11/windows/ltsc2025/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,20 @@ RUN mkdir /config; \
1414
-OutFile "/usr/share/caddy/index.html"
1515

1616
# https://github.com/caddyserver/caddy/releases
17-
ENV CADDY_VERSION=v2.11.3
17+
ENV CADDY_VERSION=v2.11.4
1818

1919
RUN Invoke-WebRequest \
20-
-Uri "https://github.com/caddyserver/caddy/releases/download/v2.11.3/caddy_2.11.3_windows_amd64.zip" \
20+
-Uri "https://github.com/caddyserver/caddy/releases/download/v2.11.4/caddy_2.11.4_windows_amd64.zip" \
2121
-OutFile "/caddy.zip"; \
22-
if (!(Get-FileHash -Path /caddy.zip -Algorithm SHA512).Hash.ToLower().Equals('338f5557a1554677875b79dbc4b10d008781111ad29223811e64217936fa5d58602ddd54724ef1cb1473b7ec07805cf5286d6aa1e810febde7e36daf497d791f')) { exit 1; }; \
22+
if (!(Get-FileHash -Path /caddy.zip -Algorithm SHA512).Hash.ToLower().Equals('cd5ccfd86a4b40732cf715890d0dca5bf3f63adefec5a7914de85adf240c60ce7e5d2791631b88ef9758e46b23bb1730e020b9c5d696889740b284ffd4788e35')) { exit 1; }; \
2323
Expand-Archive -Path "/caddy.zip" -DestinationPath "/" -Force; \
2424
Remove-Item "/caddy.zip" -Force
2525

2626
# See https://caddyserver.com/docs/conventions#file-locations for details
2727
ENV XDG_CONFIG_HOME=c:/config
2828
ENV XDG_DATA_HOME=c:/data
2929

30-
LABEL org.opencontainers.image.version=v2.11.3
30+
LABEL org.opencontainers.image.version=v2.11.4
3131
LABEL org.opencontainers.image.title=Caddy
3232
LABEL org.opencontainers.image.description="a powerful, enterprise-ready, open source web server with automatic HTTPS written in Go"
3333
LABEL org.opencontainers.image.url=https://caddyserver.com

stackbrew-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
versions:
2-
- caddy_version: '2.11.3'
2+
- caddy_version: '2.11.4'
33
is_major: true
44
is_latest: true
55
dist_commit: 33ae08ff08d168572df2956ed14fbc4949880d94
@@ -44,4 +44,4 @@ variants:
4444
tags: [ "builder-windowsservercore-ltsc2025" ]
4545
shared_tags: [ "builder" ]
4646
architectures: [ windows-amd64 ]
47-
constraints: [ windowsservercore-ltsc2025 ]
47+
constraints: [ windowsservercore-ltsc2025 ]

0 commit comments

Comments
 (0)