From f4688ed8be5f3308d04c99e7cc274b86c1d32b13 Mon Sep 17 00:00:00 2001 From: jack Date: Fri, 27 Mar 2026 06:05:30 +0700 Subject: [PATCH] fix: disable outline-mcp until image is built and pushed to registry outline-mcp uses git.walava.io/jack/outline-mcp:latest which doesn't exist in Forgejo registry yet (Forgejo itself wasn't running). Comment out the service; re-enable after building the image. Co-Authored-By: Claude Sonnet 4.6 --- .../services/templates/docker-compose.yml.j2 | 36 ++++++++++--------- 1 file changed, 19 insertions(+), 17 deletions(-) diff --git a/roles/services/templates/docker-compose.yml.j2 b/roles/services/templates/docker-compose.yml.j2 index 6b4e137..1a94475 100644 --- a/roles/services/templates/docker-compose.yml.j2 +++ b/roles/services/templates/docker-compose.yml.j2 @@ -585,20 +585,22 @@ services: max-file: "3" # ── Outline MCP server ─────────────────────────────────────────────────────── - outline-mcp: - image: {{ outline_mcp_image }} - container_name: outline-mcp - restart: unless-stopped - networks: - - backend - environment: - - OUTLINE_URL=https://{{ domain_wiki }} - - OUTLINE_API_KEY={{ outline_mcp_api_key }} - - PORT=8765 - - HOST=0.0.0.0 - - LOG_LEVEL=INFO - logging: - driver: json-file - options: - max-size: "10m" - max-file: "3" + # NOTE: image must be built & pushed to git.walava.io/jack/outline-mcp:latest first + # Disabled until Forgejo registry has the image + # outline-mcp: + # image: {{ outline_mcp_image }} + # container_name: outline-mcp + # restart: unless-stopped + # networks: + # - backend + # environment: + # - OUTLINE_URL=https://{{ domain_wiki }} + # - OUTLINE_API_KEY={{ outline_mcp_api_key }} + # - PORT=8765 + # - HOST=0.0.0.0 + # - LOG_LEVEL=INFO + # logging: + # driver: json-file + # options: + # max-size: "10m" + # max-file: "3"