[2f888f42] Container neu bauen und testne

Container neu bauen und testne
This commit is contained in:
2026-01-30 11:55:37 +00:00
parent 6c3f033ebb
commit 6ce3ca84eb
4 changed files with 90 additions and 36 deletions

View File

@@ -13,5 +13,20 @@ services:
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: {}