feat: Add KILO_API_KEY to Docker configuration

Add Kilo Gateway API key support to Docker deployment:

- Add KILO_API_KEY environment variable to docker-compose.yml
- Add KILO_API_KEY to .env.example with documentation

This ensures the Kilo Gateway API key is properly passed through
to the Docker container when configured.
This commit is contained in:
southseact-3d
2026-02-18 16:24:23 +00:00
parent 81ff352966
commit ce81f1c999
2 changed files with 5 additions and 0 deletions

View File

@@ -35,6 +35,9 @@ ROUTEWAY_API_KEY=
# G4F (works without key for free tier) # G4F (works without key for free tier)
G4F_API_KEY= G4F_API_KEY=
# Kilo Gateway - Universal AI Inference API (https://kilo.ai)
KILO_API_KEY=
# Bytez # Bytez
BYTEZ_API_KEY= BYTEZ_API_KEY=

View File

@@ -118,6 +118,8 @@ services:
- ROUTEWAY_API_KEY=${ROUTEWAY_API_KEY:-} - ROUTEWAY_API_KEY=${ROUTEWAY_API_KEY:-}
# G4F # G4F
- G4F_API_KEY=${G4F_API_KEY:-} - G4F_API_KEY=${G4F_API_KEY:-}
# Kilo Gateway
- KILO_API_KEY=${KILO_API_KEY:-}
# Bytez # Bytez
- BYTEZ_API_KEY=${BYTEZ_API_KEY:-} - BYTEZ_API_KEY=${BYTEZ_API_KEY:-}
# Ollama # Ollama