Document and add multi-bot Docker workflows with env layering scripts, and update agent/tool configuration handling to make MCP/email/calendar behavior more robust for day-to-day operations. Made-with: Cursor
62 lines
1.2 KiB
YAML
62 lines
1.2 KiB
YAML
services:
|
|
nanobot-user1:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: nanobot-user1
|
|
command: ["gateway"]
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ~/.nanobot-user1:/root/.nanobot
|
|
ports:
|
|
- "18790:18790"
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
cpus: '1'
|
|
memory: 1G
|
|
reservations:
|
|
cpus: '0.25'
|
|
memory: 256M
|
|
|
|
nanobot-user2:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: nanobot-user2
|
|
command: ["gateway"]
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ~/.nanobot-user2:/root/.nanobot
|
|
ports:
|
|
- "18791:18790"
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
cpus: '1'
|
|
memory: 1G
|
|
reservations:
|
|
cpus: '0.25'
|
|
memory: 256M
|
|
|
|
nanobot-user3:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: nanobot-user3
|
|
command: ["gateway"]
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ~/.nanobot-user3:/root/.nanobot
|
|
ports:
|
|
- "18792:18790"
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
cpus: '1'
|
|
memory: 1G
|
|
reservations:
|
|
cpus: '0.25'
|
|
memory: 256M
|
|
|