Updated the to reflect the definitive conclusion that Moltbot (requiring Node.js v22+) cannot be installed on Synology NAS systems (due to Docker/kernel incompatibility with modern Node.js images, and Moltbot's hard requirement). - Added a prominent warning about the unresolvable "Catch-22" at the beginning of the guide. - Documented the and that represented the final, most advanced attempt to bypass the issues, including using Node.js v20, named Docker volumes, and aggressive patching attempts. - Updated the troubleshooting section to clearly explain the unresolvable conflict and its implications, offering alternative solutions outside of Synology.
18 lines
377 B
YAML
18 lines
377 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
moltbot:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.moltbot
|
|
container_name: moltbot
|
|
restart: unless-stopped
|
|
ports:
|
|
- "18789:18789"
|
|
command: /app/packages/clawdbot/node_modules/.bin/clawdbot gateway --port 18789 --allow-unconfigured
|
|
volumes:
|
|
- moltbot_data:/home/node/.clawd
|
|
|
|
volumes:
|
|
moltbot_data: {}
|