Correct info linked to new image and add config.json file
This commit is contained in:
+7
-2
@@ -4,7 +4,7 @@ services:
|
|||||||
container_name: init-mcpo
|
container_name: init-mcpo
|
||||||
user: '0'
|
user: '0'
|
||||||
command: >
|
command: >
|
||||||
sh -c "cp -fu /sources/config.yaml /app/"
|
sh -c "cp -fu /sources/config.json /app/"
|
||||||
volumes:
|
volumes:
|
||||||
- ./sources:/sources
|
- ./sources:/sources
|
||||||
# Chemin des stacks pour Hawser sous Ubuntu
|
# Chemin des stacks pour Hawser sous Ubuntu
|
||||||
@@ -17,9 +17,14 @@ services:
|
|||||||
- mcponet
|
- mcponet
|
||||||
|
|
||||||
mcpo:
|
mcpo:
|
||||||
image: ghcr.io/open-webui/mcpo:latest
|
image: ghcr.io/open-webui/mcpo:main
|
||||||
container_name: mcpo
|
container_name: mcpo
|
||||||
restart: always
|
restart: always
|
||||||
|
environment:
|
||||||
|
port: 8000
|
||||||
|
api-key: "top-secret"
|
||||||
|
command:
|
||||||
|
- "--config /app/config.json"
|
||||||
ports:
|
ports:
|
||||||
- "8888:8000"
|
- "8888:8000"
|
||||||
volumes:
|
volumes:
|
||||||
|
|||||||
@@ -0,0 +1,29 @@
|
|||||||
|
{
|
||||||
|
"mcpServers": {
|
||||||
|
"memory": {
|
||||||
|
"command": "npx",
|
||||||
|
"args": ["-y", "@modelcontextprotocol/server-memory"]
|
||||||
|
},
|
||||||
|
"time": {
|
||||||
|
"command": "uvx",
|
||||||
|
"args": ["mcp-server-time", "--local-timezone=Europe/Paris"],
|
||||||
|
"disabledTools": ["convert_time"]
|
||||||
|
},
|
||||||
|
"dockhand": {
|
||||||
|
"type": "http",
|
||||||
|
"url": "http://dartydisk6.maison:8080"
|
||||||
|
},
|
||||||
|
"mcp_sse": {
|
||||||
|
"type": "sse",
|
||||||
|
"url": "http://127.0.0.1:8001/sse",
|
||||||
|
"headers": {
|
||||||
|
"Authorization": "Bearer token",
|
||||||
|
"X-Custom-Header": "value"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"mcp_streamable_http": {
|
||||||
|
"type": "streamable-http",
|
||||||
|
"url": "http://127.0.0.1:8002/mcp"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user