From acc4851549a01642952314e03e4d8d91002f8824 Mon Sep 17 00:00:00 2001 From: Kyle Isom Date: Thu, 26 Mar 2026 23:31:02 -0700 Subject: [PATCH] Update RUNBOOK MCP example to use pinned version tags Replace :latest with :v1.1.0 in the MCP service definition example to match the new platform convention of explicit version pinning. Co-Authored-By: Claude Opus 4.6 (1M context) --- RUNBOOK.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RUNBOOK.md b/RUNBOOK.md index d6868e4..d31f81a 100644 --- a/RUNBOOK.md +++ b/RUNBOOK.md @@ -361,7 +361,7 @@ active = true [[components]] name = "api" -image = "mcr.svc.mcp.metacircular.net:8443/mcr:latest" +image = "mcr.svc.mcp.metacircular.net:8443/mcr:v1.1.0" network = "mcpnet" user = "0:0" restart = "unless-stopped" @@ -371,7 +371,7 @@ cmd = ["server", "--config", "/srv/mcr/mcr.toml"] [[components]] name = "web" -image = "mcr.svc.mcp.metacircular.net:8443/mcr-web:latest" +image = "mcr.svc.mcp.metacircular.net:8443/mcr-web:v1.1.0" network = "mcpnet" user = "0:0" restart = "unless-stopped"