Files
pm-aigateway/compose/docker-compose.yml
T
Stéphane Tailland 65eb285b66 first commit
2026-04-26 13:58:04 +02:00

14 lines
414 B
YAML

services:
agentgateway:
image: ghcr.io/agentgateway/agentgateway:v1.1.0
ports:
- "4000:4000" # OpenAI-compatible API
- "15000:15000" # UI
volumes:
- ../config:/etc/agentgateway:ro
command: ["-f", "/etc/agentgateway/config-binds.yaml"]
environment:
- ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY}
- OPENROUTER_API_KEY=${OPENROUTER_API_KEY}
restart: unless-stopped