From f0372adaaeb210a787782b124f41a759f0245c7e Mon Sep 17 00:00:00 2001 From: Julien Gautier Date: Fri, 8 May 2026 20:08:33 +0200 Subject: [PATCH] fix(infra): correct Jaeger image tag (#58) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary `jaegertracing/all-in-one:1.62` doesn't exist on Docker Hub — I picked it from memory in #57 without verification. Jaeger 1.x publishes only full-semver tags (1.X.Y), not rolling minor (`1.X`) tags. Activating `--profile observability` errored at image-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` (latest stable in the 1.x line, verified against Docker Hub). ## Test plan - [ ] `cd infra/local && docker compose -f dev.compose.yml --profile observability up -d` → all images pull, all services healthy. - [ ] http://localhost:16686 → Jaeger UI loads (empty until the BFF starts emitting traces, which lands in the upcoming **B — Observability foundations** PR). - [ ] Renovate's docker-compose manager picks up future Jaeger 1.x bumps and surfaces them as PRs. --------- Co-authored-by: Julien Gautier Reviewed-on: https://git.unespace.com/julien/apf_portal/pulls/58 --- 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]