First commit

This commit is contained in:
2026-05-01 15:13:02 +03:00
parent c2fcedf608
commit b983126e6e
18 changed files with 7142 additions and 147 deletions

20
docker-compose.yml Normal file
View File

@@ -0,0 +1,20 @@
version: '3.8'
services:
vndb-bot:
build: .
container_name: vndb-telegram-bot
restart: unless-stopped
environment:
- TELEGRAM_BOT_TOKEN=${TELEGRAM_BOT_TOKEN}
- VNDB_TOKEN=${VNDB_TOKEN:-}
- LOG_LEVEL=INFO
- USE_SANDBOX=false
volumes:
- ./logs:/app/logs
networks:
- bot-network
networks:
bot-network:
driver: bridge