Files
kekbot.js/docker-compose.yml
hllywluis 7ff95a3d7f
Deploy to NAS / deploy (push) Has been cancelled
Add Brave Search as primary web search with NanoGPT fallback
- Brave Search API is now primary (if BRAVE_API_KEY set)
- NanoGPT web search is fallback if Brave fails
- Add BRAVE_API_KEY to .env, docker-compose, and deploy workflow
- Tool calling still works for AI to request searches
2026-03-09 16:51:43 -04:00

27 lines
671 B
YAML

version: '3.8'
services:
kekbot:
image: tea.kleptonix.com/hllywluis/kekbot.js:latest
container_name: kekbot
restart: unless-stopped
env_file:
- .env
environment:
- NANO_MODEL=${NANO_MODEL}
- ZAI_API_KEY=${ZAI_API_KEY}
- BRAVE_API_KEY=${BRAVE_API_KEY}
volumes:
# Mount logs directory if you want to persist logs
- ./logs:/app/logs
# Uncomment if you need to expose a port for health checks
# ports:
# - "3000:3000"
# Health check (optional)
healthcheck:
test: ["CMD", "node", "-e", "process.exit(0)"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s