From f8204fbc88f0835b21fc9d1fad7cbcf7be516219 Mon Sep 17 00:00:00 2001 From: Ahmath-Gadji Date: Wed, 8 Jul 2026 14:47:59 +0000 Subject: [PATCH] chore(compose): pin app images to v2.0.0-rc.2 instead of latest MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The compose stack referenced linagoraai/openrag:latest and linagoraai/openrag-admin-ui:latest. On Docker Hub 'latest' for openrag still points at the old v1.1.13 GA image, and openrag-admin-ui has no 'latest' tag at all — so 'docker compose up' either pulls a stale v1 image or fails outright. Pin both to the current published v2 tag (v2.0.0-rc.2) for a reproducible, correct pull. --- infra/compose/docker-compose.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infra/compose/docker-compose.yaml b/infra/compose/docker-compose.yaml index ff6efb0a7..ec77a9e6d 100644 --- a/infra/compose/docker-compose.yaml +++ b/infra/compose/docker-compose.yaml @@ -5,7 +5,7 @@ include: - ${TRANSCRIBER_COMPOSE:-../../extern/dummy.yaml} x-openrag: &openrag_template - image: linagoraai/openrag:latest + image: linagoraai/openrag:v2.0.0-rc.2 # Start as root so entrypoint.sh can grant GID-0 write on the bind-mounted # writable dirs (data/, logs/, the HF cache) — which a non-root container # can't write when Docker auto-creates them root-owned — then it immediately @@ -98,7 +98,7 @@ x-vllm: &vllm_template services: # ── Admin UI (React SPA + nginx, same-origin reverse proxy to the API) ── admin-ui: - image: linagoraai/openrag-admin-ui:latest + image: linagoraai/openrag-admin-ui:v2.0.0-rc.2 build: context: ../.. dockerfile: infra/docker/ui.Dockerfile