Skip to content

Commit 422a4ac

Browse files
committed
v3.1.1
1 parent b840026 commit 422a4ac

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

v3.1/alpine/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RUN set -ex; \
1111
ppc64le) arch='ppc64le' ;; \
1212
*) echo >&2 "error: unsupported architecture: $apkArch"; exit 1 ;; \
1313
esac; \
14-
wget --quiet -O /tmp/traefik.tar.gz "https://github.com/traefik/traefik/releases/download/v3.1.0/traefik_v3.1.0_linux_$arch.tar.gz"; \
14+
wget --quiet -O /tmp/traefik.tar.gz "https://github.com/traefik/traefik/releases/download/v3.1.1/traefik_v3.1.1_linux_$arch.tar.gz"; \
1515
tar xzvf /tmp/traefik.tar.gz -C /usr/local/bin traefik; \
1616
rm -f /tmp/traefik.tar.gz; \
1717
chmod +x /usr/local/bin/traefik
@@ -26,5 +26,5 @@ LABEL org.opencontainers.image.vendor="Traefik Labs" \
2626
org.opencontainers.image.source="https://github.com/traefik/traefik" \
2727
org.opencontainers.image.title="Traefik" \
2828
org.opencontainers.image.description="A modern reverse-proxy" \
29-
org.opencontainers.image.version="v3.1.0" \
29+
org.opencontainers.image.version="v3.1.1" \
3030
org.opencontainers.image.documentation="https://docs.traefik.io"

v3.1/scratch/Dockerfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM scratch
2-
COPY --from=traefik:v3.1.0-alpine /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
3-
COPY --from=traefik:v3.1.0-alpine /usr/share/zoneinfo /usr/share/
4-
COPY --from=traefik:v3.1.0-alpine /usr/local/bin/traefik /
2+
COPY --from=traefik:v3.1.1-alpine /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
3+
COPY --from=traefik:v3.1.1-alpine /usr/share/zoneinfo /usr/share/
4+
COPY --from=traefik:v3.1.1-alpine /usr/local/bin/traefik /
55

66
EXPOSE 80
77
VOLUME ["/tmp"]
@@ -13,5 +13,5 @@ LABEL org.opencontainers.image.vendor="Traefik Labs" \
1313
org.opencontainers.image.source="https://github.com/traefik/traefik" \
1414
org.opencontainers.image.title="Traefik" \
1515
org.opencontainers.image.description="A modern reverse-proxy" \
16-
org.opencontainers.image.version="v3.1.0" \
16+
org.opencontainers.image.version="v3.1.1" \
1717
org.opencontainers.image.documentation="https://docs.traefik.io"

v3.1/windows/1809/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM mcr.microsoft.com/windows/servercore:1809
22
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
33

44
RUN Invoke-WebRequest \
5-
-Uri "https://github.com/traefik/traefik/releases/download/v3.1.0/traefik_v3.1.0_windows_amd64.zip" \
5+
-Uri "https://github.com/traefik/traefik/releases/download/v3.1.1/traefik_v3.1.1_windows_amd64.zip" \
66
-OutFile "/traefik.zip"; \
77
Expand-Archive -Path "/traefik.zip" -DestinationPath "/" -Force; \
88
Remove-Item "/traefik.zip" -Force
@@ -16,5 +16,5 @@ LABEL org.opencontainers.image.vendor="Traefik Labs" \
1616
org.opencontainers.image.source="https://github.com/traefik/traefik" \
1717
org.opencontainers.image.title="Traefik" \
1818
org.opencontainers.image.description="A modern reverse-proxy" \
19-
org.opencontainers.image.version="v3.1.0" \
19+
org.opencontainers.image.version="v3.1.1" \
2020
org.opencontainers.image.documentation="https://docs.traefik.io"

v3.1/windows/nanoserver-ltsc2022/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM mcr.microsoft.com/windows/nanoserver:ltsc2022
22

3-
COPY --from=traefik:v3.1.0-windowsservercore-ltsc2022 /traefik.exe /
3+
COPY --from=traefik:v3.1.1-windowsservercore-ltsc2022 /traefik.exe /
44

55
EXPOSE 80
66
ENTRYPOINT [ "/traefik" ]
@@ -11,5 +11,5 @@ LABEL org.opencontainers.image.vendor="Traefik Labs" \
1111
org.opencontainers.image.source="https://github.com/traefik/traefik" \
1212
org.opencontainers.image.title="Traefik" \
1313
org.opencontainers.image.description="A modern reverse-proxy" \
14-
org.opencontainers.image.version="v3.1.0" \
14+
org.opencontainers.image.version="v3.1.1" \
1515
org.opencontainers.image.documentation="https://docs.traefik.io"

v3.1/windows/servercore-ltsc2022/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM mcr.microsoft.com/windows/servercore:ltsc2022
22
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
33

44
RUN Invoke-WebRequest \
5-
-Uri "https://github.com/traefik/traefik/releases/download/v3.1.0/traefik_v3.1.0_windows_amd64.zip" \
5+
-Uri "https://github.com/traefik/traefik/releases/download/v3.1.1/traefik_v3.1.1_windows_amd64.zip" \
66
-OutFile "/traefik.zip"; \
77
Expand-Archive -Path "/traefik.zip" -DestinationPath "/" -Force; \
88
Remove-Item "/traefik.zip" -Force
@@ -16,5 +16,5 @@ LABEL org.opencontainers.image.vendor="Traefik Labs" \
1616
org.opencontainers.image.source="https://github.com/traefik/traefik" \
1717
org.opencontainers.image.title="Traefik" \
1818
org.opencontainers.image.description="A modern reverse-proxy" \
19-
org.opencontainers.image.version="v3.1.0" \
19+
org.opencontainers.image.version="v3.1.1" \
2020
org.opencontainers.image.documentation="https://docs.traefik.io"

version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v2.11.7
1+
v3.1.1

0 commit comments

Comments
 (0)