remove networks error
This commit is contained in:
@@ -2,11 +2,10 @@ services:
|
|||||||
basharbot:
|
basharbot:
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
|
dockerfile: Dockerfile
|
||||||
container_name: basharbot
|
container_name: basharbot
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
network_mode: host
|
|
||||||
environment:
|
environment:
|
||||||
DOCKER_BUILDKIT: 0
|
|
||||||
DISCORD_TOKEN: ${DISCORD_TOKEN}
|
DISCORD_TOKEN: ${DISCORD_TOKEN}
|
||||||
WHISPER_MODEL_SIZE: ${WHISPER_MODEL_SIZE:-small}
|
WHISPER_MODEL_SIZE: ${WHISPER_MODEL_SIZE:-small}
|
||||||
LOG_LEVEL: ${LOG_LEVEL:-INFO}
|
LOG_LEVEL: ${LOG_LEVEL:-INFO}
|
||||||
@@ -14,21 +13,19 @@ services:
|
|||||||
HOTWORD_ENABLED: ${HOTWORD_ENABLED:-true}
|
HOTWORD_ENABLED: ${HOTWORD_ENABLED:-true}
|
||||||
GOODBOY_USER_ID: ${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
|
||||||
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}
|
ARABIC_TTS_MODEL: ${ARABIC_TTS_MODEL:-tts_models/ar/cv/vits}
|
||||||
volumes:
|
volumes:
|
||||||
- ./logs:/app/logs
|
- bot-logs:/app/logs
|
||||||
- bot-data:/app/data
|
- bot-data:/app/data
|
||||||
- whisper-models:/root/.cache/huggingface
|
- whisper-models:/root/.cache/huggingface
|
||||||
labels:
|
labels:
|
||||||
- "com.centurylinklabs.watchtower.enable=true"
|
- "com.centurylinklabs.watchtower.enable=true"
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
|
bot-logs:
|
||||||
|
driver: local
|
||||||
bot-data:
|
bot-data:
|
||||||
driver: local
|
driver: local
|
||||||
whisper-models:
|
whisper-models:
|
||||||
driver: local
|
driver: local
|
||||||
|
|
||||||
networks:
|
|
||||||
bot-network:
|
|
||||||
driver: bridge
|
|
||||||
|
|||||||
Reference in New Issue
Block a user