admin panel

This commit is contained in:
vrubelroman 2025-11-13 01:00:48 +03:00
parent 3362bf89e2
commit 23de80f94d
6 changed files with 424 additions and 20 deletions

View file

@ -22,6 +22,7 @@ services:
container_name: lichess-telegram-bot
volumes:
- ./LichessClientTG_bot/data:/app/data
- ./LichessClientTG_bot:/app
environment:
- PYTHONPATH=/app
- PYTHONUNBUFFERED=1
@ -36,6 +37,23 @@ services:
retries: 3
start_period: 40s
# Admin Panel Telegram Bot
admin-bot:
build:
context: ./LichessClientTG_bot
dockerfile: Dockerfile.admin
container_name: lichess-admin-bot
volumes:
- ./LichessClientTG_bot/data:/app/data
- ./LichessClientTG_bot:/app
environment:
- PYTHONPATH=/app
- PYTHONUNBUFFERED=1
network_mode: "host"
restart: always
depends_on:
- lichess-api
# Web View Interface
web-view:
build: ./LichessWebView