File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ if($version.StartsWith('v3')) {
1515$api_opts = ' --api.insecure'
1616}
1717
18- $path = $version - replace " \.[0-9a-z\-]+\s*$ "
18+ $path = $version -replace " (\.\d+)\..+$ " , ' $1 '
1919
2020docker build - t traefik:$target $path / windows/ $target
2121docker run -- name lb - d - p 8080 :8080 traefik:$target -- api $api_opts
Original file line number Diff line number Diff line change 1+ FROM mcr.microsoft.com/windows/nanoserver:ltsc2025
2+
3+ COPY --from=traefik:v2.11.40-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="v2.11.40" \
15+ org.opencontainers.image.documentation="https://docs.traefik.io"
Original file line number Diff line number Diff line change 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/v2.11.40/traefik_v2.11.40_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="v2.11.40" \
20+ org.opencontainers.image.documentation="https://docs.traefik.io"
Original file line number Diff line number Diff line change 11FROM mcr.microsoft.com/windows/nanoserver:ltsc2025
22
3- COPY --from=traefik:v3.6.7 -windowsservercore-ltsc2025 /traefik.exe /
3+ COPY --from=traefik:v3.6.10 -windowsservercore-ltsc2025 /traefik.exe /
44
55EXPOSE 80
66ENTRYPOINT [ "/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.6.7 " \
14+ org.opencontainers.image.version="v3.6.10 " \
1515 org.opencontainers.image.documentation="https://docs.traefik.io"
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ FROM mcr.microsoft.com/windows/servercore:ltsc2025
22SHELL ["powershell" , "-Command" , "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';" ]
33
44RUN Invoke-WebRequest \
5- -Uri "https://github.com/traefik/traefik/releases/download/v3.6.7 /traefik_v3.6.7_windows_amd64 .zip" \
5+ -Uri "https://github.com/traefik/traefik/releases/download/v3.6.10 /traefik_v3.6.10_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.6.7 " \
19+ org.opencontainers.image.version="v3.6.10 " \
2020 org.opencontainers.image.documentation="https://docs.traefik.io"
Original file line number Diff line number Diff line change 1+ FROM mcr.microsoft.com/windows/nanoserver:ltsc2025
2+
3+ COPY --from=traefik:v3.7.0-ea.1-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.7.0-ea.1" \
15+ org.opencontainers.image.documentation="https://docs.traefik.io"
Original file line number Diff line number Diff line change 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.7.0-ea.1/traefik_v3.7.0-ea.1_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.7.0-ea.1" \
20+ org.opencontainers.image.documentation="https://docs.traefik.io"
You can’t perform that action at this time.
0 commit comments