Fix gitea-mcp container entrypoint and CLI flags

The image has no gitea-mcp on PATH (binary lives at /app/gitea-mcp),
and the real binary only accepts -t/-port (Go flag style, no --addr
flag exists) — verified against upstream docs which described flags
that don't match the shipped binary.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01566weDFku8TaRC2CJUPVM1
This commit is contained in:
sha
2026-08-23 13:21:22 +03:00
co-authored by Claude Sonnet 5
parent 542b81ca3e
commit 204467008e
+2 -4
View File
@@ -3,13 +3,11 @@ image:
tag: latest tag: latest
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
command: ["gitea-mcp"] command: ["/app/gitea-mcp"]
args: args:
- -t - -t
- http - http
- --addr - -port
- 0.0.0.0
- --port
- "8080" - "8080"
port: 8080 port: 8080