This commit introduces the necessary files for installing Moltbot as a Docker container, specifically targeting a Synology NAS setup. - Created to define the Moltbot service, including image build from source, port mapping (18789), and persistent data volume ( to ). - Added which provides a comprehensive, step-by-step guide for deploying Moltbot on a Synology NAS using , covering initial setup and the interactive command.
13 lines
220 B
YAML
13 lines
220 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
moltbot:
|
|
build:
|
|
context: ./tmp/moltbot
|
|
container_name: moltbot
|
|
restart: unless-stopped
|
|
ports:
|
|
- "18789:18789"
|
|
volumes:
|
|
- ./moltbot_data:/home/node/.clawd
|