一个命令行工具,用于将文件上传到 Telegram,支持大文件分片上传和断点续传
# 查看帮助信息
docker run -it --rm --name telegram-upload aliuq/telegram-upload:latest upload --help
创建 docker-compose.yml 文件
name: telegram-upload
services:
telegram-upload:
image: aliuq/telegram-upload:latest
container_name: telegram-upload
restart: always
command: upload -i
volumes:
- ./config:/config
- ./files:/files
# 克隆仓库
git clone https://github.com/aliuq/apps-image.git
cd apps-image/apps/telegram-upload
# 构建镜像
docker buildx build -f ./Dockerfile -t telegram-upload:local --load .
# 运行测试
docker run -it --rm --name telegram-upload-local telegram-upload:local upload --help
# 显示详细构建日志
docker buildx build --progress=plain -f ./Dockerfile -t telegram-upload:debug --no-cache --load .
📝 该文档由 AI 辅助生成并整理,如有问题请随时反馈
Content type
Image
Digest
sha256:2d5586c39…
Size
53.7 MB
Last updated
over 1 year ago
docker pull aliuq/telegram-upload