From 0b8d7d92ae448cbace07561086a43da967d7ade3 Mon Sep 17 00:00:00 2001 From: surtur Date: Wed, 30 Mar 2022 17:26:02 +0200 Subject: [PATCH] fix 8fe0e155d3: bump traefik to version 2.7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit the :2.6.3 tag is apparently only available for arm arch, it's probably best not to base the decision to bump versions on a new release notification. instead, availability of the new version for our default arch (amd64) should always be checked: podman run -it --rm docker.io/library/traefik:2.6.3 Trying to pull docker.io/library/traefik:2.6.3... Error: choosing an image from manifest list docker://traefik:2.6.3: no image found in manifest list for architecture amd64, variant "", OS linux ~ took 2s (╯°□°)╯︵ ┻━┻ 125 🔥 podman run -it --rm docker.io/library/traefik:2.7 Trying to pull docker.io/library/traefik:2.7... Getting image source signatures Copying blob 491249faa733 done --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 37776f8..c8c409f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,7 +1,7 @@ version: '3' services: reverse-proxy: - image: traefik:2.6.3 + image: traefik:2.7 command: --api=false --api.dashboard=false --providers.docker networks: - internal-nw