Fucking rip

This commit is contained in:
2025-12-05 21:41:09 -05:00
parent 21c8c9c51d
commit 28f3c2e994

View File

@@ -2,20 +2,21 @@ version: '3.8'
services: services:
basharbot: basharbot:
image: basharbot:latest
build: . build: .
container_name: basharbot container_name: basharbot
restart: unless-stopped restart: unless-stopped
environment: environment:
- DISCORD_TOKEN=MTAxNDE5NDAxNzM0NjUzMTQxOQ.GY6P0P.jnCq9V4SbeO1HmkNuzWCSM47CnrIsdko_3sCCw DISCORD_TOKEN: ${DISCORD_TOKEN}
- WHISPER_MODEL_SIZE=small WHISPER_MODEL_SIZE: ${WHISPER_MODEL_SIZE:-small}
- LOG_LEVEL=DEBUG LOG_LEVEL: ${LOG_LEVEL:-INFO}
- TRANSCRIPT_LOG_ENABLED=true TRANSCRIPT_LOG_ENABLED: ${TRANSCRIPT_LOG_ENABLED:-true}
- HOTWORD_ENABLED=true HOTWORD_ENABLED: ${HOTWORD_ENABLED:-true}
- GOODBOY_USER_ID=94578724413902848 GOODBOY_USER_ID: ${GOODBOY_USER_ID:-94578724413902848}
- TRANSCRIPT_LOG_PATH=/app/logs/transcript.log TRANSCRIPT_LOG_PATH: /app/logs/transcript.log
volumes: volumes:
- ./logs:/app/logs - bot-logs:/app/logs
- ./data:/app/data - bot-data:/app/data
- whisper-models:/root/.cache/huggingface - whisper-models:/root/.cache/huggingface
networks: networks:
- bot-network - bot-network
@@ -23,6 +24,10 @@ services:
- "com.centurylinklabs.watchtower.enable=true" - "com.centurylinklabs.watchtower.enable=true"
volumes: volumes:
bot-logs:
driver: local
bot-data:
driver: local
whisper-models: whisper-models:
driver: local driver: local