-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
24 lines (22 loc) · 777 Bytes
/
docker-compose.yml
File metadata and controls
24 lines (22 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
version: "3.8"
services:
help-bot:
build: .
container_name: gameci-help-bot
restart: unless-stopped
environment:
- DISCORD_BOT_TOKEN=${DISCORD_BOT_TOKEN}
- DISCORD_GUILD_ID=${DISCORD_GUILD_ID}
- DISCORD_WEBHOOK_URL=${DISCORD_WEBHOOK_URL}
- ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY}
- LLM_PROVIDER=${LLM_PROVIDER:-claude}
- CYCLE_INTERVAL_MINUTES=${CYCLE_INTERVAL_MINUTES:-30}
- DRY_RUN=${DRY_RUN:-false}
volumes:
# Persist logs and response history between container restarts
- bot-data:/app/data
# For LM Studio: connect to host network so the container can reach localhost:1234
# Uncomment the line below if using LM Studio as your LLM provider:
# network_mode: host
volumes:
bot-data: