https://github.com/disafronov/telegram-file-sender
Docker image for sending files via Telegram Bot API
https://github.com/disafronov/telegram-file-sender
file-upload telegram telegram-bot telegram-bot-api
Last synced: 5 months ago
JSON representation
Docker image for sending files via Telegram Bot API
- Host: GitHub
- URL: https://github.com/disafronov/telegram-file-sender
- Owner: disafronov
- License: apache-2.0
- Created: 2025-02-24T09:24:32.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-12-26T03:38:00.000Z (6 months ago)
- Last Synced: 2025-12-26T17:22:42.377Z (6 months ago)
- Topics: file-upload, telegram, telegram-bot, telegram-bot-api
- Language: Python
- Homepage:
- Size: 47.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# telegram-file-sender
Docker image for sending files via Telegram Bot API.
## Example usage
```shell
docker run --rm \
-w [path_to_dir_with_your_file] \
-v [path_to_dir_with_your_file]:[path_to_dir_with_your_file]:ro \
-e TELEGRAM_BOT_TOKEN="BotAccessToken" \
-e TELEGRAM_CHAT_ID="ChatId" \
-e TELEGRAM_CHAT_MESSAGE="VerboseFileDescription" \
-e TELEGRAM_FILE_NAME="FullPathToYourFile" \
ghcr.io/dmitriysafronov/telegram-file-sender:latest
```