Skip to content
This repository was archived by the owner on Jan 15, 2026. It is now read-only.

Commit df934a2

Browse files
committed
claude_desktop: add container runtime path
On MAC systems the podman or docker executable are usually not in the PATH, so this might be convenient.
1 parent 8189932 commit df934a2

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

claude_desktop/manifest.json

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
"icon": "icon.png",
1414
"server": {
1515
"type": "binary",
16-
"entry_point": "podman",
16+
"entry_point": "${user_config.CONTAINER_RUNTIME}",
1717
"mcp_config": {
18-
"command": "podman",
18+
"command": "${user_config.CONTAINER_RUNTIME}",
1919
"args": [
2020
"run",
2121
"--env",
@@ -47,6 +47,13 @@
4747
"description": "client secret of a service account of console.redhat.com",
4848
"required": true,
4949
"sensitive": true
50+
},
51+
"CONTAINER_RUNTIME": {
52+
"type": "string",
53+
"title": "Container runtime (podman, docker, etc.)",
54+
"description": "Container runtime to use. Set a FULL PATH to the executable if there are problems on startup.",
55+
"required": true,
56+
"default": "podman"
5057
}
5158
},
5259
"keywords": [

0 commit comments

Comments
 (0)