https://github.com/clementlecorre/minio-telegram-bot
Bot telegram to upload files to an S3 (minio)
https://github.com/clementlecorre/minio-telegram-bot
docker golang minio telegram-bot
Last synced: 9 months ago
JSON representation
Bot telegram to upload files to an S3 (minio)
- Host: GitHub
- URL: https://github.com/clementlecorre/minio-telegram-bot
- Owner: clementlecorre
- License: apache-2.0
- Created: 2018-02-19T20:59:29.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-24T13:16:01.000Z (over 8 years ago)
- Last Synced: 2025-04-02T23:41:42.728Z (over 1 year ago)
- Topics: docker, golang, minio, telegram-bot
- Language: Go
- Homepage:
- Size: 3.17 MB
- Stars: 6
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# minio-telegram-bot
[](https://travis-ci.org/clementlecorre/minio-telegram-bot)
[](https://microbadger.com/images/cl3m3nt/minio-telegram-bot "Get your own image badge on microbadger.com")
Bot telegram to upload files to an S3 (minio)

## Dependency
* [caarlos0/env](github.com/caarlos0/env)
* [minio/minio-go](github.com/minio/minio-go)
* [satori/go.uuid](github.com/satori/go.uuid)
* [sirupsen/logrus](github.com/sirupsen/logrus)
* [tucnak/telebot.v2](gopkg.in/tucnak/telebot.v2)
## Env variable
* TELEGRAM_USERID
* TELEGRAM_TOKEN
* MINIO_URL
* MINIO_ACCESS_KEY
* MINIO_SECRET_KEY
## Compose example
```
version: "3.3"
services:
bot:
image: cl3m3nt/minio-telegram-bot
environment:
- TELEGRAM_USERID=
- TELEGRAM_TOKEN=
- MINIO_URL=
- MINIO_ACCESS_KEY=
- MINIO_SECRET_KEY=
```