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 <noreply@anthropic.com>
This commit is contained in:
parent
7aa5574098
commit
f4688ed8be
1 changed files with 19 additions and 17 deletions
|
|
@ -585,20 +585,22 @@ services:
|
||||||
max-file: "3"
|
max-file: "3"
|
||||||
|
|
||||||
# ── Outline MCP server ───────────────────────────────────────────────────────
|
# ── Outline MCP server ───────────────────────────────────────────────────────
|
||||||
outline-mcp:
|
# NOTE: image must be built & pushed to git.walava.io/jack/outline-mcp:latest first
|
||||||
image: {{ outline_mcp_image }}
|
# Disabled until Forgejo registry has the image
|
||||||
container_name: outline-mcp
|
# outline-mcp:
|
||||||
restart: unless-stopped
|
# image: {{ outline_mcp_image }}
|
||||||
networks:
|
# container_name: outline-mcp
|
||||||
- backend
|
# restart: unless-stopped
|
||||||
environment:
|
# networks:
|
||||||
- OUTLINE_URL=https://{{ domain_wiki }}
|
# - backend
|
||||||
- OUTLINE_API_KEY={{ outline_mcp_api_key }}
|
# environment:
|
||||||
- PORT=8765
|
# - OUTLINE_URL=https://{{ domain_wiki }}
|
||||||
- HOST=0.0.0.0
|
# - OUTLINE_API_KEY={{ outline_mcp_api_key }}
|
||||||
- LOG_LEVEL=INFO
|
# - PORT=8765
|
||||||
logging:
|
# - HOST=0.0.0.0
|
||||||
driver: json-file
|
# - LOG_LEVEL=INFO
|
||||||
options:
|
# logging:
|
||||||
max-size: "10m"
|
# driver: json-file
|
||||||
max-file: "3"
|
# options:
|
||||||
|
# max-size: "10m"
|
||||||
|
# max-file: "3"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue