feat(ki): füge openclaw mit openrouter und deepseek-v3 hinzu

This commit is contained in:
Felix
2026-05-15 21:05:17 +02:00
parent 4b9fa166c0
commit 98d882f6a7
+24
View File
@@ -0,0 +1,24 @@
networks:
traefik_proxy:
external: true
services:
openclaw:
image: ghcr.io/openclaw/openclaw:main
container_name: openclaw-server
restart: unless-stopped
environment:
- OPENAI_API_BASE_URL=https://openrouter.ai/api/v1
- OPENAI_API_KEY=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
volumes:
- ./data:/home/node/.openclaw
networks:
- traefik_proxy
labels:
- "traefik.enable=true"
- "traefik.http.routers.openclaw.rule=Host(`claw.brabros.de`)"
- "traefik.http.routers.openclaw.entrypoints=websecure"
- "traefik.http.routers.openclaw.tls.certresolver=myresolver"
- "traefik.http.routers.openclaw.middlewares=authelia@docker"
- "traefik.http.services.openclaw.loadbalancer.server.port=18789"
- "traefik.docker.network=traefik_proxy"