Files
openclaw-ditte-compose/compose.yml
2026-04-19 23:58:44 +00:00

19 lines
755 B
YAML

services:
openclaw-gateway:
image: ghcr.io/openclaw/openclaw:latest
container_name: openclaw-gateway
ports:
- "18789:18789" # Gør UI tilgængeligt for din NPM-maskine
environment:
- LLM_PROVIDER=openai
- OPENAI_API_KEY=${OPENAI_API_KEY}
- ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY}
- GATEWAY_TOKEN=${GATEWAY_TOKEN}
# Telegram integration:
- TELEGRAM_BOT_TOKEN=${TELEGRAM_BOT_TOKEN}
- TELEGRAM_ALLOWED_USER_IDS=${TELEGRAM_ALLOWED_USER_IDS}
- GATEWAY_CONTROL_UI_ALLOWED_ORIGINS=https://ditteai.ckvist.dk
volumes:
- /datadisk/docker/openclaw-ditte/config:/root/.openclaw
- /datadisk/docker/openclaw-ditte/workspace:/root/openclaw/workspace
restart: unless-stopped