From 2e83d060807864dc4333b5dea2bcb414a5f9660e Mon Sep 17 00:00:00 2001 From: HRiggs Date: Sat, 6 Dec 2025 00:12:40 -0500 Subject: [PATCH] remove networks error --- docker-compose.yml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index c5c15ed..dcdd598 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,11 +2,10 @@ services: basharbot: build: context: . + dockerfile: Dockerfile container_name: basharbot restart: unless-stopped - network_mode: host environment: - DOCKER_BUILDKIT: 0 DISCORD_TOKEN: ${DISCORD_TOKEN} WHISPER_MODEL_SIZE: ${WHISPER_MODEL_SIZE:-small} LOG_LEVEL: ${LOG_LEVEL:-INFO} @@ -14,21 +13,19 @@ services: HOTWORD_ENABLED: ${HOTWORD_ENABLED:-true} GOODBOY_USER_ID: ${GOODBOY_USER_ID:-94578724413902848} TRANSCRIPT_LOG_PATH: /app/logs/transcript.log - USE_ARABIC_TTS: ${USE_ARABIC_TTS:-true} + USE_ARABIC_TTS: ${USE_ARABIC_TTS:-false} ARABIC_TTS_MODEL: ${ARABIC_TTS_MODEL:-tts_models/ar/cv/vits} volumes: - - ./logs:/app/logs + - bot-logs:/app/logs - bot-data:/app/data - whisper-models:/root/.cache/huggingface labels: - "com.centurylinklabs.watchtower.enable=true" volumes: + bot-logs: + driver: local bot-data: driver: local whisper-models: driver: local - -networks: - bot-network: - driver: bridge