You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
370 B
20 lines
370 B
services:
|
|
swarms-agent-server:
|
|
image: swarms-agent-node:latest
|
|
platform: linux/amd64
|
|
volumes:
|
|
- /var/run/tappd.sock:/var/run/tappd.sock
|
|
- swarms:/app
|
|
restart: always
|
|
ports:
|
|
- 8000:8000
|
|
command: # Sample MCP Server
|
|
- /bin/sh
|
|
- -c
|
|
- |
|
|
cd /app/mcp_example
|
|
python mcp_test.py
|
|
|
|
volumes:
|
|
swarms:
|