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: "your_api_user" # Placeholder API_PASSWORD: "your_api_password" # Placeholder volumes: - ./company-explorer/backend:/app/backend # Sideloading backend changes - ./company-explorer/frontend_static:/frontend_static # Sideloading frontend changes if any - ./companies_v3_fixed_2.db:/app/companies_v3_fixed_2.db # Database persistence, as per MIGRATION_PLAN.md volumes: moltbot_data: {}