mirror of
https://github.com/traefik/traefik-library-image.git
synced 2026-05-02 18:32:33 +00:00
Remove windows 1809
This commit is contained in:
@@ -26,21 +26,6 @@ jobs:
|
||||
- name: Test
|
||||
run: ./.ci/test.sh
|
||||
|
||||
docker-library-win1809:
|
||||
name: Test on windows server 2019
|
||||
runs-on: windows-2019
|
||||
|
||||
steps:
|
||||
|
||||
- name: Check out code
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 1
|
||||
|
||||
- name: Test
|
||||
run: .\.ci\test.ps1 -target '1809'
|
||||
shell: powershell
|
||||
|
||||
docker-library-wincore2022:
|
||||
name: Test on windows server core 2022
|
||||
runs-on: windows-2022
|
||||
|
||||
@@ -1,17 +0,0 @@
|
||||
FROM mcr.microsoft.com/windows/servercore:1809
|
||||
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
|
||||
|
||||
RUN Invoke-WebRequest \
|
||||
-Uri "https://github.com/traefik/traefik/releases/download/${VERSION}/traefik_windows-amd64.exe" \
|
||||
-OutFile "/traefik.exe"
|
||||
|
||||
EXPOSE 80
|
||||
ENTRYPOINT [ "/traefik" ]
|
||||
|
||||
# Metadata
|
||||
LABEL org.opencontainers.image.vendor="Traefik Labs" \
|
||||
org.opencontainers.image.url="https://traefik.io" \
|
||||
org.opencontainers.image.title="Traefik" \
|
||||
org.opencontainers.image.description="A modern reverse-proxy" \
|
||||
org.opencontainers.image.version="$VERSION" \
|
||||
org.opencontainers.image.documentation="https://docs.traefik.io"
|
||||
@@ -1,20 +0,0 @@
|
||||
FROM mcr.microsoft.com/windows/servercore:1809
|
||||
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
|
||||
|
||||
RUN Invoke-WebRequest \
|
||||
-Uri "https://github.com/traefik/traefik/releases/download/${VERSION}/traefik_${VERSION}_windows_amd64.zip" \
|
||||
-OutFile "/traefik.zip"; \
|
||||
Expand-Archive -Path "/traefik.zip" -DestinationPath "/" -Force; \
|
||||
Remove-Item "/traefik.zip" -Force
|
||||
|
||||
EXPOSE 80
|
||||
ENTRYPOINT [ "/traefik" ]
|
||||
|
||||
# Metadata
|
||||
LABEL org.opencontainers.image.vendor="Traefik Labs" \
|
||||
org.opencontainers.image.url="https://traefik.io" \
|
||||
org.opencontainers.image.source="https://github.com/traefik/traefik" \
|
||||
org.opencontainers.image.title="Traefik" \
|
||||
org.opencontainers.image.description="A modern reverse-proxy" \
|
||||
org.opencontainers.image.version="$VERSION" \
|
||||
org.opencontainers.image.documentation="https://docs.traefik.io"
|
||||
@@ -1,20 +0,0 @@
|
||||
FROM mcr.microsoft.com/windows/servercore:1809
|
||||
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
|
||||
|
||||
RUN Invoke-WebRequest \
|
||||
-Uri "https://github.com/traefik/traefik/releases/download/${VERSION}/traefik_${VERSION}_windows_amd64.zip" \
|
||||
-OutFile "/traefik.zip"; \
|
||||
Expand-Archive -Path "/traefik.zip" -DestinationPath "/" -Force; \
|
||||
Remove-Item "/traefik.zip" -Force
|
||||
|
||||
EXPOSE 80
|
||||
ENTRYPOINT [ "/traefik" ]
|
||||
|
||||
# Metadata
|
||||
LABEL org.opencontainers.image.vendor="Traefik Labs" \
|
||||
org.opencontainers.image.url="https://traefik.io" \
|
||||
org.opencontainers.image.source="https://github.com/traefik/traefik" \
|
||||
org.opencontainers.image.title="Traefik" \
|
||||
org.opencontainers.image.description="A modern reverse-proxy" \
|
||||
org.opencontainers.image.version="$VERSION" \
|
||||
org.opencontainers.image.documentation="https://docs.traefik.io"
|
||||
@@ -14,7 +14,6 @@ export ALPINE_VERSION=3.21
|
||||
PLATFORMS=(
|
||||
"alpine"
|
||||
"scratch"
|
||||
"windows/1809"
|
||||
"windows/nanoserver-ltsc2022"
|
||||
"windows/servercore-ltsc2022"
|
||||
)
|
||||
|
||||
@@ -1,20 +0,0 @@
|
||||
FROM mcr.microsoft.com/windows/servercore:1809
|
||||
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
|
||||
|
||||
RUN Invoke-WebRequest \
|
||||
-Uri "https://github.com/traefik/traefik/releases/download/v2.11.26/traefik_v2.11.26_windows_amd64.zip" \
|
||||
-OutFile "/traefik.zip"; \
|
||||
Expand-Archive -Path "/traefik.zip" -DestinationPath "/" -Force; \
|
||||
Remove-Item "/traefik.zip" -Force
|
||||
|
||||
EXPOSE 80
|
||||
ENTRYPOINT [ "/traefik" ]
|
||||
|
||||
# Metadata
|
||||
LABEL org.opencontainers.image.vendor="Traefik Labs" \
|
||||
org.opencontainers.image.url="https://traefik.io" \
|
||||
org.opencontainers.image.source="https://github.com/traefik/traefik" \
|
||||
org.opencontainers.image.title="Traefik" \
|
||||
org.opencontainers.image.description="A modern reverse-proxy" \
|
||||
org.opencontainers.image.version="v2.11.26" \
|
||||
org.opencontainers.image.documentation="https://docs.traefik.io"
|
||||
@@ -1,20 +0,0 @@
|
||||
FROM mcr.microsoft.com/windows/servercore:1809
|
||||
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
|
||||
|
||||
RUN Invoke-WebRequest \
|
||||
-Uri "https://github.com/traefik/traefik/releases/download/v3.0.4/traefik_v3.0.4_windows_amd64.zip" \
|
||||
-OutFile "/traefik.zip"; \
|
||||
Expand-Archive -Path "/traefik.zip" -DestinationPath "/" -Force; \
|
||||
Remove-Item "/traefik.zip" -Force
|
||||
|
||||
EXPOSE 80
|
||||
ENTRYPOINT [ "/traefik" ]
|
||||
|
||||
# Metadata
|
||||
LABEL org.opencontainers.image.vendor="Traefik Labs" \
|
||||
org.opencontainers.image.url="https://traefik.io" \
|
||||
org.opencontainers.image.source="https://github.com/traefik/traefik" \
|
||||
org.opencontainers.image.title="Traefik" \
|
||||
org.opencontainers.image.description="A modern reverse-proxy" \
|
||||
org.opencontainers.image.version="v3.0.4" \
|
||||
org.opencontainers.image.documentation="https://docs.traefik.io"
|
||||
@@ -1,20 +0,0 @@
|
||||
FROM mcr.microsoft.com/windows/servercore:1809
|
||||
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
|
||||
|
||||
RUN Invoke-WebRequest \
|
||||
-Uri "https://github.com/traefik/traefik/releases/download/v3.1.7/traefik_v3.1.7_windows_amd64.zip" \
|
||||
-OutFile "/traefik.zip"; \
|
||||
Expand-Archive -Path "/traefik.zip" -DestinationPath "/" -Force; \
|
||||
Remove-Item "/traefik.zip" -Force
|
||||
|
||||
EXPOSE 80
|
||||
ENTRYPOINT [ "/traefik" ]
|
||||
|
||||
# Metadata
|
||||
LABEL org.opencontainers.image.vendor="Traefik Labs" \
|
||||
org.opencontainers.image.url="https://traefik.io" \
|
||||
org.opencontainers.image.source="https://github.com/traefik/traefik" \
|
||||
org.opencontainers.image.title="Traefik" \
|
||||
org.opencontainers.image.description="A modern reverse-proxy" \
|
||||
org.opencontainers.image.version="v3.1.7" \
|
||||
org.opencontainers.image.documentation="https://docs.traefik.io"
|
||||
@@ -1,20 +0,0 @@
|
||||
FROM mcr.microsoft.com/windows/servercore:1809
|
||||
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
|
||||
|
||||
RUN Invoke-WebRequest \
|
||||
-Uri "https://github.com/traefik/traefik/releases/download/v3.2.5/traefik_v3.2.5_windows_amd64.zip" \
|
||||
-OutFile "/traefik.zip"; \
|
||||
Expand-Archive -Path "/traefik.zip" -DestinationPath "/" -Force; \
|
||||
Remove-Item "/traefik.zip" -Force
|
||||
|
||||
EXPOSE 80
|
||||
ENTRYPOINT [ "/traefik" ]
|
||||
|
||||
# Metadata
|
||||
LABEL org.opencontainers.image.vendor="Traefik Labs" \
|
||||
org.opencontainers.image.url="https://traefik.io" \
|
||||
org.opencontainers.image.source="https://github.com/traefik/traefik" \
|
||||
org.opencontainers.image.title="Traefik" \
|
||||
org.opencontainers.image.description="A modern reverse-proxy" \
|
||||
org.opencontainers.image.version="v3.2.5" \
|
||||
org.opencontainers.image.documentation="https://docs.traefik.io"
|
||||
@@ -1,20 +0,0 @@
|
||||
FROM mcr.microsoft.com/windows/servercore:1809
|
||||
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
|
||||
|
||||
RUN Invoke-WebRequest \
|
||||
-Uri "https://github.com/traefik/traefik/releases/download/v3.3.7/traefik_v3.3.7_windows_amd64.zip" \
|
||||
-OutFile "/traefik.zip"; \
|
||||
Expand-Archive -Path "/traefik.zip" -DestinationPath "/" -Force; \
|
||||
Remove-Item "/traefik.zip" -Force
|
||||
|
||||
EXPOSE 80
|
||||
ENTRYPOINT [ "/traefik" ]
|
||||
|
||||
# Metadata
|
||||
LABEL org.opencontainers.image.vendor="Traefik Labs" \
|
||||
org.opencontainers.image.url="https://traefik.io" \
|
||||
org.opencontainers.image.source="https://github.com/traefik/traefik" \
|
||||
org.opencontainers.image.title="Traefik" \
|
||||
org.opencontainers.image.description="A modern reverse-proxy" \
|
||||
org.opencontainers.image.version="v3.3.7" \
|
||||
org.opencontainers.image.documentation="https://docs.traefik.io"
|
||||
@@ -1,20 +0,0 @@
|
||||
FROM mcr.microsoft.com/windows/servercore:1809
|
||||
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
|
||||
|
||||
RUN Invoke-WebRequest \
|
||||
-Uri "https://github.com/traefik/traefik/releases/download/v3.4.3/traefik_v3.4.3_windows_amd64.zip" \
|
||||
-OutFile "/traefik.zip"; \
|
||||
Expand-Archive -Path "/traefik.zip" -DestinationPath "/" -Force; \
|
||||
Remove-Item "/traefik.zip" -Force
|
||||
|
||||
EXPOSE 80
|
||||
ENTRYPOINT [ "/traefik" ]
|
||||
|
||||
# Metadata
|
||||
LABEL org.opencontainers.image.vendor="Traefik Labs" \
|
||||
org.opencontainers.image.url="https://traefik.io" \
|
||||
org.opencontainers.image.source="https://github.com/traefik/traefik" \
|
||||
org.opencontainers.image.title="Traefik" \
|
||||
org.opencontainers.image.description="A modern reverse-proxy" \
|
||||
org.opencontainers.image.version="v3.4.3" \
|
||||
org.opencontainers.image.documentation="https://docs.traefik.io"
|
||||
@@ -1,20 +0,0 @@
|
||||
FROM mcr.microsoft.com/windows/servercore:1809
|
||||
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
|
||||
|
||||
RUN Invoke-WebRequest \
|
||||
-Uri "https://github.com/traefik/traefik/releases/download/v3.5.0-rc1/traefik_v3.5.0-rc1_windows_amd64.zip" \
|
||||
-OutFile "/traefik.zip"; \
|
||||
Expand-Archive -Path "/traefik.zip" -DestinationPath "/" -Force; \
|
||||
Remove-Item "/traefik.zip" -Force
|
||||
|
||||
EXPOSE 80
|
||||
ENTRYPOINT [ "/traefik" ]
|
||||
|
||||
# Metadata
|
||||
LABEL org.opencontainers.image.vendor="Traefik Labs" \
|
||||
org.opencontainers.image.url="https://traefik.io" \
|
||||
org.opencontainers.image.source="https://github.com/traefik/traefik" \
|
||||
org.opencontainers.image.title="Traefik" \
|
||||
org.opencontainers.image.description="A modern reverse-proxy" \
|
||||
org.opencontainers.image.version="v3.5.0-rc1" \
|
||||
org.opencontainers.image.documentation="https://docs.traefik.io"
|
||||
Reference in New Issue
Block a user