Files
docker-infrastructure/openclaw/docker-compose.yml
T
poprhythm fecb4831ad Add Brave API key to openclaw, fix uptime-kuma auth and TCP monitors
- openclaw: expose BRAVE_API_KEY env var for web search tool
- uptime-kuma: prefer username/password auth (API key token auth unreliable)
- uptime-kuma: add TCP monitor type support to manage_monitors.py
2026-02-23 19:14:01 +00:00

25 lines
671 B
YAML

services:
openclaw:
container_name: openclaw
build: .
restart: unless-stopped
command: ["openclaw", "gateway", "--allow-unconfigured", "--bind", "lan"]
environment:
- HOME=/home/node
- TERM=xterm-256color
- TZ=America/New_York
- OPENCLAW_GATEWAY_TOKEN=${OPENCLAW_GATEWAY_TOKEN}
# Enable Ollama provider (opt-in via env var)
- OLLAMA_API_KEY=ollama-local
- BRAVE_API_KEY=${BRAVE_API_KEY}
volumes:
- /srv/openclaw/config:/home/node/.openclaw
- /srv/openclaw/workspace:/home/node/.openclaw/workspace
init: true
networks:
- npm-network
networks:
npm-network:
external: true