first commit

This commit is contained in:
Stéphane Tailland
2026-04-26 13:58:04 +02:00
commit 65eb285b66
7 changed files with 202 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
OPENAI_API_KEY=sk-...
ANTHROPIC_API_KEY=sk-ant-...
OPENROUTER_API_KEY=sk-or-...
+13
View File
@@ -0,0 +1,13 @@
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