2.3 KiB
2.3 KiB
Docker Deployment Guide
Quick Start
-
Copy environment file:
cp .env.example .env -
Edit .env with your Discord token:
# Edit .env and add your DISCORD_TOKEN -
Build and run with Docker Compose:
docker-compose up -d -
View logs:
docker-compose logs -f basharbot
Portainer Deployment
Method 1: Using Portainer Stacks
- Log into Portainer
- Go to Stacks → Add stack
- Name it
basharbot - Choose Upload and upload
docker-compose.yml - Add environment variables in the Environment variables section:
DISCORD_TOKEN: Your Discord bot tokenWHISPER_MODEL_SIZE: small (or tiny/base/medium/large)LOG_LEVEL: INFO
- Click Deploy the stack
Method 2: Using Git Repository
- In Portainer, go to Stacks → Add stack
- Choose Repository
- Enter your Git repository URL
- Set compose path:
docker-compose.yml - Add environment variables
- Click Deploy the stack
Configuration
All configuration is done via environment variables in .env:
DISCORD_TOKEN: Your Discord bot token (required)WHISPER_MODEL_SIZE: Model size for speech recognition (tiny/small/base/medium/large)LOG_LEVEL: Logging level (DEBUG/INFO/WARNING/ERROR)TRANSCRIPT_LOG_ENABLED: Enable transcript logging (true/false)HOTWORD_ENABLED: Enable hotword detection (true/false)GOODBOY_USER_ID: Special user ID for goodboy audio
Volumes
./logs: Bot and transcript logs./data: Persistent datawhisper-models: Cached Whisper AI models
Commands
# Start the bot
docker-compose up -d
# Stop the bot
docker-compose down
# View logs
docker-compose logs -f
# Restart the bot
docker-compose restart
# Rebuild after code changes
docker-compose up -d --build
# Remove everything including volumes
docker-compose down -v
Troubleshooting
Bot won't start:
- Check logs:
docker-compose logs basharbot - Verify DISCORD_TOKEN is set correctly in .env
Audio issues:
- Ensure ffmpeg is installed in container (included in Dockerfile)
- Check opus library is available
High memory usage:
- Use smaller Whisper model:
WHISPER_MODEL_SIZE=tiny - Reduce model compute type in stt.py
Updates
To update the bot:
git pull
docker-compose up -d --build