Files
agent-platform/docker-compose.yml
T

78 lines
2.4 KiB
YAML
Raw Normal View History

2026-07-05 22:18:00 +02:00
services:
agent-platform:
build: ./agent_platform
expose:
- "8000"
labels:
- "traefik.enable=true"
- "traefik.http.routers.${COMPOSE_PROJECT_NAME:-agent-platform}.rule=Host(`${FQDN:-staging.agent-platform.media-on.de}`)"
- "traefik.http.routers.${COMPOSE_PROJECT_NAME:-agent-platform}.entrypoints=websecure"
- "traefik.http.routers.${COMPOSE_PROJECT_NAME:-agent-platform}.tls=true"
- "traefik.http.routers.${COMPOSE_PROJECT_NAME:-agent-platform}.tls.certresolver=letsencrypt"
- "traefik.http.services.${COMPOSE_PROJECT_NAME:-agent-platform}.loadbalancer.server.port=8000"
2026-07-05 22:18:00 +02:00
environment:
- HOST=${HOST:-0.0.0.0}
- PORT=${PORT:-8000}
2026-07-05 22:18:00 +02:00
- LLM_PROVIDER=${LLM_PROVIDER:-openrouter}
- LLM_API_KEY=${LLM_API_KEY}
- LLM_MODEL=${LLM_MODEL:-openrouter/deepseek/deepseek-v4-flash}
2026-07-05 22:18:00 +02:00
- LLM_API_BASE=${LLM_API_BASE:-}
- MCP_SERVER_URL=${MCP_SERVER_URL:-http://mcp-tools:8501/mcp}
- MCP_TIMEOUT=${MCP_TIMEOUT:-10}
2026-07-05 22:18:00 +02:00
- AUTH_TOKEN=${AUTH_TOKEN}
- DB_PATH=${DB_PATH:-/data/agent-platform.db}
2026-07-05 22:18:00 +02:00
- LOG_LEVEL=${LOG_LEVEL:-info}
- MAX_HISTORY_MESSAGES=${MAX_HISTORY_MESSAGES:-10}
- MAX_PARALLEL_AGENTS=${MAX_PARALLEL_AGENTS:-5}
- AGENT_IDLE_TIMEOUT_SEC=${AGENT_IDLE_TIMEOUT_SEC:-300}
2026-07-05 22:18:00 +02:00
volumes:
- agent-data:/data
depends_on:
mcp-tools:
condition: service_healthy
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/health"]
interval: 10s
timeout: 5s
retries: 5
start_period: 10s
2026-07-05 22:18:00 +02:00
restart: unless-stopped
networks:
- agent-net
# Informational only in docker compose standalone; apply via Coolify per-container limits UI
2026-07-05 22:18:00 +02:00
deploy:
resources:
limits:
memory: 256M
cpus: '0.5'
mcp-tools:
build: ./mcp_tools
expose:
- "8501"
environment:
- MCP_HOST=0.0.0.0
- MCP_PORT=8501
healthcheck:
test: ["CMD-SHELL", "(echo > /dev/tcp/127.0.0.1/8501) >/dev/null 2>&1 || exit 1"]
interval: 10s
timeout: 5s
retries: 5
start_period: 10s
2026-07-05 22:18:00 +02:00
restart: unless-stopped
networks:
- agent-net
# Informational only in docker compose standalone; apply via Coolify per-container limits UI
2026-07-05 22:18:00 +02:00
deploy:
resources:
limits:
memory: 128M
cpus: '0.25'
volumes:
agent-data:
networks:
agent-net:
driver: bridge