surfaces/docker-compose.max.yml
2026-05-06 15:16:22 +03:00

24 lines
No EOL
600 B
YAML

services:
max-bot:
build:
context: .
target: development
environment:
- MAX_BOT_TOKEN=${MAX_BOT_TOKEN}
- MAX_API_URL=${MAX_API_URL:-https://api.max.ru/v1}
- MAX_AGENT_REGISTRY_PATH=/app/config/max-agents.yaml
- AGENT_BASE_URL=http://platform-agent:8000
- SURFACES_WORKSPACE_DIR=/agents
volumes:
- surfaces-agents:/agents
command: python -m adapter.max.bot
platform-agent:
image: platform-agent:latest
environment:
- WORKSPACE_DIR=/workspace
volumes:
- surfaces-agents:/workspace
volumes:
surfaces-agents: