Files
mars-nanobot/docker-compose.yml
2026-03-27 17:17:29 +08:00

28 lines
538 B
YAML

services:
nanobot-gateway:
container_name: nanobot-gateway
build:
context: .
dockerfile: Dockerfile
command: ["gateway"]
restart: unless-stopped
volumes:
- ./nanobot-config:/root/.nanobot
- ./MCP:/opt/mcp
ports:
- "18790:18790"
- "8005:8005"
nanobot-cli:
build:
context: .
dockerfile: Dockerfile
profiles:
- cli
command: ["status"]
stdin_open: true
tty: true
volumes:
- ./nanobot-config:/root/.nanobot
- ./MCP:/opt/mcp