- Add DevContainer configuration for Codespaces - Add GitHub Actions workflows for automation - Add Ollama support to Memory plugin - Add comprehensive documentation
25 lines
449 B
YAML
25 lines
449 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
moltbot:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
volumes:
|
|
- ../..:/workspace:cached
|
|
- moltbot-data:/root/.clawdbot
|
|
- moltbot-memory:/root/.clawdbot/memory
|
|
ports:
|
|
- "18789:18789"
|
|
- "18791:18791"
|
|
cap_add:
|
|
- SYS_PTRACE
|
|
security_opt:
|
|
- seccomp:unconfined
|
|
command: sleep infinity
|
|
network_mode: host
|
|
|
|
volumes:
|
|
moltbot-data:
|
|
moltbot-memory:
|