From f22a1a1cfa2c65f795beceb69bfad423e56d70d4 Mon Sep 17 00:00:00 2001 From: Marcel Date: Sat, 6 Jun 2026 20:09:48 +0200 Subject: [PATCH] docs(deploy): fix prod Ollama volume name to match hyphenated compose volume docker-compose.prod.yml declares the volume as `ollama-models` (hyphen), so the compose-project-prefixed name is `archiv-production_ollama-models`, not the underscored `archiv-production_ollama_models` the model-upgrade guide documented. The documented `docker volume rm` would not have matched the real volume. Addresses #759 review (Tobias #2). Co-Authored-By: Claude Opus 4.8 --- docs/DEPLOYMENT.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/DEPLOYMENT.md b/docs/DEPLOYMENT.md index d5f6e1c1..f8523515 100644 --- a/docs/DEPLOYMENT.md +++ b/docs/DEPLOYMENT.md @@ -625,7 +625,7 @@ To switch to a newer model version (e.g. a future release of `qwen2.5`): ```bash docker volume rm familienarchiv_ollama_models ``` - (In production the volume name is prefixed with the compose project: `archiv-production_ollama_models`.) + (In production the volume name is prefixed with the compose project: `archiv-production_ollama-models`.) 3. Restart the stack: ```bash docker compose up -d