14 lines
414 B
YAML
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
|