Skip to content

Commit 238039d

Browse files
committed
Add Windows Server 2025 images for v3.6
1 parent 64fe8c0 commit 238039d

2 files changed

Lines changed: 35 additions & 0 deletions

File tree

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
FROM mcr.microsoft.com/windows/nanoserver:ltsc2025
2+
3+
COPY --from=traefik:v3.6.7-windowsservercore-ltsc2025 /traefik.exe /
4+
5+
EXPOSE 80
6+
ENTRYPOINT [ "/traefik" ]
7+
8+
# Metadata
9+
LABEL org.opencontainers.image.vendor="Traefik Labs" \
10+
org.opencontainers.image.url="https://traefik.io" \
11+
org.opencontainers.image.source="https://github.com/traefik/traefik" \
12+
org.opencontainers.image.title="Traefik" \
13+
org.opencontainers.image.description="A modern reverse-proxy" \
14+
org.opencontainers.image.version="v3.6.7" \
15+
org.opencontainers.image.documentation="https://docs.traefik.io"
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
FROM mcr.microsoft.com/windows/servercore:ltsc2025
2+
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
3+
4+
RUN Invoke-WebRequest \
5+
-Uri "https://github.com/traefik/traefik/releases/download/v3.6.7/traefik_v3.6.7_windows_amd64.zip" \
6+
-OutFile "/traefik.zip"; \
7+
Expand-Archive -Path "/traefik.zip" -DestinationPath "/" -Force; \
8+
Remove-Item "/traefik.zip" -Force
9+
10+
EXPOSE 80
11+
ENTRYPOINT [ "/traefik" ]
12+
13+
# Metadata
14+
LABEL org.opencontainers.image.vendor="Traefik Labs" \
15+
org.opencontainers.image.url="https://traefik.io" \
16+
org.opencontainers.image.source="https://github.com/traefik/traefik" \
17+
org.opencontainers.image.title="Traefik" \
18+
org.opencontainers.image.description="A modern reverse-proxy" \
19+
org.opencontainers.image.version="v3.6.7" \
20+
org.opencontainers.image.documentation="https://docs.traefik.io"

0 commit comments

Comments
 (0)