mirror of
https://github.com/FuzzingLabs/fuzzforge_ai.git
synced 2026-02-12 20:32:46 +00:00
- Disable FuzzForge MCP connection (no Prefect backend) - Add a2a_wrapper module for programmatic A2A agent tasks - Add task_agent (LiteLLM A2A agent) on port 10900 - Create volumes/env/ for centralized Docker config - Update docker-compose.yml with task-agent service - Remove workflow_automation_skill from agent card
25 lines
556 B
YAML
25 lines
556 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
task-agent:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: fuzzforge-task-agent
|
|
ports:
|
|
- "10900:8000"
|
|
env_file:
|
|
- ../../../volumes/env/.env
|
|
environment:
|
|
- PORT=8000
|
|
- PYTHONUNBUFFERED=1
|
|
volumes:
|
|
# Mount volumes/env for runtime config access
|
|
- ../../../volumes/env:/app/config:ro
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:8000/health"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|