remove networks error

This commit is contained in:
2025-12-06 00:12:40 -05:00
parent ac1a7cfba2
commit 2e83d06080

View File

@@ -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