32 lines
812 B
YAML
32 lines
812 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
|
|
|
|
company-explorer:
|
|
build:
|
|
context: ./company-explorer
|
|
container_name: company-explorer
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8000:8000"
|
|
environment:
|
|
API_USER: "admin"
|
|
API_PASSWORD: "gemini"
|
|
volumes:
|
|
- ./company-explorer/backend:/app/backend # Sideloading backend changes
|
|
- ./companies_v3_fixed_2.db:/app/companies_v3_fixed_2.db # Database persistence, as per MIGRATION_PLAN.md
|
|
|
|
volumes:
|
|
moltbot_data: {}
|