From 9aaf9f1f452c7c3d5c5c6ef00bbf6952d7aa6f7f Mon Sep 17 00:00:00 2001 From: Julien Gautier Date: Fri, 8 May 2026 20:03:38 +0200 Subject: [PATCH] fix(infra): correct Jaeger image tag MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `jaegertracing/all-in-one:1.62` does not exist on Docker Hub — Jaeger 1.x publishes only full-semver tags (1.X.Y), not rolling minor tags. Activating the `observability` profile failed at pull time: Error response from daemon: failed to resolve reference "docker.io/jaegertracing/all-in-one:1.62": ... not found Pin to `1.76.0`, the most recent stable in the 1.x line. Renovate's docker-compose manager will surface future bumps automatically (gated behind dashboard approval for majors per renovate.json). --- infra/local/dev.compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/local/dev.compose.yml b/infra/local/dev.compose.yml index 921fcfa..b16a5d1 100644 --- a/infra/local/dev.compose.yml +++ b/infra/local/dev.compose.yml @@ -123,7 +123,7 @@ services: # Jaeger on the internal Compose network. # ------------------------------------------------------------------ jaeger: - image: jaegertracing/all-in-one:1.62 + image: jaegertracing/all-in-one:1.76.0 container_name: apf-portal-jaeger restart: unless-stopped profiles: [observability] -- 2.30.2