初始化多平台机器人部署项目 - Telegram/Discord/QQ资源搜索机器人

This commit is contained in:
2026-09-11 11:19:56 +08:00
commit 2253a2d774
21 changed files with 4004 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
version: "3"
services:
tg_search_bot:
image: python:3.10
restart: always
working_dir: /app
environment:
- TZ=Asia/Shanghai
network_mode: "host"
volumes:
- .:/app
- ~/.tg_search_bot:/root/.tg_search_bot
command: >
sh -c "
pip3 install -U -r requirements.txt &&
python3 bot.py"