(Feat): New Features
This commit is contained in:
21
docker-compose.yml
Normal file
21
docker-compose.yml
Normal 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
|
||||
Reference in New Issue
Block a user