Files
Brancheneinstufung2/docker-compose.yml
Floke 60dfbb0afd [2f988f42] Webinterface wieder zum Laufen gebracht
Webinterface wieder zum Laufen gebracht
2026-01-31 05:49:27 +00:00

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: {}