(Feat): New Features

This commit is contained in:
2025-12-17 14:45:57 +00:00
parent 470e5a13aa
commit 75aa141e07
8 changed files with 169 additions and 6 deletions

21
docker-compose.yml Normal file
View File

@@ -0,0 +1,21 @@
# Elly Discord Bot - Docker Compose
# ===================================
services:
elly-bot:
build:
context: .
dockerfile: Dockerfile
container_name: elly-discord-bot
restart: unless-stopped
env_file:
- .env
volumes:
# Persist database and logs
- ./data:/app/data
- ./logs:/app/logs
# Mount config file (create config.toml from config.example.toml)
- ./config.toml:/app/config.toml:ro
# Optional: Set timezone
environment:
- TZ=UTC