mirror of
https://github.com/shadoll/helm-charts.git
synced 2026-08-28 03:27:08 +00:00
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:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user