ResearchAgent/docker-compose.yml

15 lines
348 B
YAML

# CIA Scout-Modul: FastAPI-Service
# Host-Port 8010 → Container 8000. Requests: http://localhost:8010/discover
services:
scout:
build:
context: .
dockerfile: Dockerfile.worker
ports:
- "8010:8000"
env_file:
- .env
environment:
- OPENROUTER_API_KEY=${OPENROUTER_API_KEY}
restart: unless-stopped