Skip to content

Bump Traefik to v2.2.3#8333

Closed
ldez wants to merge 1 commit intodocker-library:masterfrom
ldez:feat/traefik-v2.2.3
Closed

Bump Traefik to v2.2.3#8333
ldez wants to merge 1 commit intodocker-library:masterfrom
ldez:feat/traefik-v2.2.3

Conversation

@ldez
Copy link
Copy Markdown
Contributor

@ldez ldez commented Jul 10, 2020

Hello,

This PR updates Traefik to v2.2.3.

/cc @jbdoumenjou @mmatur @SantoDE

Closes #8329

@ldez ldez force-pushed the feat/traefik-v2.2.3 branch from 133e353 to 578d7ed Compare July 10, 2020 00:43
@github-actions
Copy link
Copy Markdown

Diff for 578d7ed:
diff --git a/_bashbrew-cat b/_bashbrew-cat
index 78ea984..fd9cb31 100644
--- a/_bashbrew-cat
+++ b/_bashbrew-cat
@@ -1,13 +1,13 @@
 Maintainers: Emile Vauge <emile@vauge.com> (@emilevauge), Vincent Demeester <vincent@sbr.pm> (@vdemeester), Ludovic Fernandez <ludovic@containo.us> (@ldez), Julien Salleyron <julien@containo.us> (@juliens), Nicolas Mengin <nicolas@containo.us> (@nmengin), Michael Matur <michael@containo.us> (@mmatur)
 GitRepo: https://github.com/containous/traefik-library-image.git
 
-Tags: v2.2.2, 2.2.2, v2.2, 2.2, chevrotin, latest
+Tags: v2.2.3, 2.2.3, v2.2, 2.2, chevrotin, latest
 Architectures: amd64, arm32v6, arm64v8
-GitCommit: 296caddf8ba97b52841872b2192758af9e9d7775
+GitCommit: 61032ac693236b6a5af83bb9fb76d36fa38d6589
 Directory: alpine
 
-Tags: v2.2.2-windowsservercore-1809, 2.2.2-windowsservercore-1809, v2.2-windowsservercore-1809, 2.2-windowsservercore-1809, chevrotin-windowsservercore-1809, windowsservercore-1809
+Tags: v2.2.3-windowsservercore-1809, 2.2.3-windowsservercore-1809, v2.2-windowsservercore-1809, 2.2-windowsservercore-1809, chevrotin-windowsservercore-1809, windowsservercore-1809
 Architectures: windows-amd64
-GitCommit: 296caddf8ba97b52841872b2192758af9e9d7775
+GitCommit: 61032ac693236b6a5af83bb9fb76d36fa38d6589
 Directory: windows/1809
 Constraints: windowsservercore-1809
diff --git a/_bashbrew-list b/_bashbrew-list
index 0272c2f..629578b 100644
--- a/_bashbrew-list
+++ b/_bashbrew-list
@@ -1,12 +1,12 @@
 traefik:2.2
 traefik:2.2-windowsservercore-1809
-traefik:2.2.2
-traefik:2.2.2-windowsservercore-1809
+traefik:2.2.3
+traefik:2.2.3-windowsservercore-1809
 traefik:chevrotin
 traefik:chevrotin-windowsservercore-1809
 traefik:latest
 traefik:v2.2
 traefik:v2.2-windowsservercore-1809
-traefik:v2.2.2
-traefik:v2.2.2-windowsservercore-1809
+traefik:v2.2.3
+traefik:v2.2.3-windowsservercore-1809
 traefik:windowsservercore-1809
diff --git a/traefik_latest/Dockerfile b/traefik_latest/Dockerfile
index 2c67462..bafb159 100644
--- a/traefik_latest/Dockerfile
+++ b/traefik_latest/Dockerfile
@@ -8,7 +8,7 @@ RUN set -ex; \
 		x86_64) arch='amd64' ;; \
 		*) echo >&2 "error: unsupported architecture: $apkArch"; exit 1 ;; \
 	esac; \
-	wget --quiet -O /tmp/traefik.tar.gz "https://github.com/containous/traefik/releases/download/v2.2.2/traefik_v2.2.2_linux_$arch.tar.gz"; \
+	wget --quiet -O /tmp/traefik.tar.gz "https://github.com/containous/traefik/releases/download/v2.2.3/traefik_v2.2.3_linux_$arch.tar.gz"; \
 	tar xzvf /tmp/traefik.tar.gz -C /usr/local/bin traefik; \
 	rm -f /tmp/traefik.tar.gz; \
 	chmod +x /usr/local/bin/traefik
@@ -22,5 +22,5 @@ LABEL org.opencontainers.image.vendor="Containous" \
 	org.opencontainers.image.url="https://traefik.io" \
 	org.opencontainers.image.title="Traefik" \
 	org.opencontainers.image.description="A modern reverse-proxy" \
-	org.opencontainers.image.version="v2.2.2" \
+	org.opencontainers.image.version="v2.2.3" \
 	org.opencontainers.image.documentation="https://docs.traefik.io"
diff --git a/traefik_windowsservercore-1809/Dockerfile b/traefik_windowsservercore-1809/Dockerfile
index 5929179..02b4455 100644
--- a/traefik_windowsservercore-1809/Dockerfile
+++ b/traefik_windowsservercore-1809/Dockerfile
@@ -3,18 +2,18 @@ FROM mcr.microsoft.com/windows/servercore:1809
 SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
 
 RUN Invoke-WebRequest \
-        -Uri "https://github.com/containous/traefik/releases/download/v2.2.2/traefik_v2.2.2_windows_amd64.zip" \
+        -Uri "https://github.com/containous/traefik/releases/download/v2.2.3/traefik_v2.2.3_windows_amd64.zip" \
         -OutFile "/traefik.zip"; \
     Expand-Archive -Path "/traefik.zip" -DestinationPath "/" -Force; \
     Remove-Item "/traefik.zip" -Force
 
 EXPOSE 80
-CMD ["/traefik"]
+ENTRYPOINT [ "/traefik" ]
 
 # Metadata
 LABEL org.opencontainers.image.vendor="Containous" \
     org.opencontainers.image.url="https://traefik.io" \
     org.opencontainers.image.title="Traefik" \
     org.opencontainers.image.description="A modern reverse-proxy" \
-    org.opencontainers.image.version="v2.2.2" \
+    org.opencontainers.image.version="v2.2.3" \
     org.opencontainers.image.documentation="https://docs.traefik.io"

Copy link
Copy Markdown
Contributor

@mmatur mmatur left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

Copy link
Copy Markdown
Contributor

@jbdoumenjou jbdoumenjou left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

Copy link
Copy Markdown

@SantoDE SantoDE left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@ldez
Copy link
Copy Markdown
Contributor Author

ldez commented Jul 10, 2020

Replaced by #8336

@ldez ldez closed this Jul 10, 2020
@ldez ldez deleted the feat/traefik-v2.2.3 branch July 17, 2020 20:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants