Files
BasharBotV2/docker-compose.yml
2025-12-05 21:41:09 -05:00

37 lines
872 B
YAML

version: '3.8'
services:
basharbot:
image: basharbot:latest
build: .
container_name: basharbot
restart: unless-stopped
environment:
DISCORD_TOKEN: ${DISCORD_TOKEN}
WHISPER_MODEL_SIZE: ${WHISPER_MODEL_SIZE:-small}
LOG_LEVEL: ${LOG_LEVEL:-INFO}
TRANSCRIPT_LOG_ENABLED: ${TRANSCRIPT_LOG_ENABLED:-true}
HOTWORD_ENABLED: ${HOTWORD_ENABLED:-true}
GOODBOY_USER_ID: ${GOODBOY_USER_ID:-94578724413902848}
TRANSCRIPT_LOG_PATH: /app/logs/transcript.log
volumes:
- bot-logs:/app/logs
- bot-data:/app/data
- whisper-models:/root/.cache/huggingface
networks:
- bot-network
labels:
- "com.centurylinklabs.watchtower.enable=true"
volumes:
bot-logs:
driver: local
bot-data:
driver: local
whisper-models:
driver: local
networks:
bot-network:
driver: bridge