From b2c3dc527f45fc9f55e3b406261a1d5ac8dba5c8 Mon Sep 17 00:00:00 2001 From: Erich Blume Date: Mon, 23 Feb 2026 17:33:05 -0800 Subject: [PATCH] C2(upgrade-grafana): plan document grafana tarball path lesson Discovered during build: the Grafana OSS tarball extracts to grafana-, not grafana-v. The Dockerfile mv command must match this naming. Co-Authored-By: Claude Opus 4.6 --- docs/how-to/grafana/build-grafana-container.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/how-to/grafana/build-grafana-container.md b/docs/how-to/grafana/build-grafana-container.md index ccec654..08942c4 100644 --- a/docs/how-to/grafana/build-grafana-container.md +++ b/docs/how-to/grafana/build-grafana-container.md @@ -23,6 +23,10 @@ Grafana currently uses the upstream `docker.io/grafana/grafana:11.4.0` image via 3. Tag and push to `forge.ops.eblu.me/eblume/grafana:` 4. Add to `mise run container-list` inventory +## Lessons + +- **Tarball directory name:** The Grafana OSS tarball extracts to `grafana-` (e.g. `grafana-12.3.3`), *not* `grafana-v`. The `mv` command in the Dockerfile must match this. + ## Reference - Follow [[build-container-image]] for the standard container build workflow