Simple Rss feed reader for telegram Based on the fantastic work of brokenpip3/rtt
Environment variables:
TGTOKEN
: telegram bot tokenTGCHAT
: the chat id where the bot send the notifications, the bot must be a memberCONFIGFILE
: optional, where the config file is placed, default "/usr/src/app/settings.yaml"DBFILE
: optional, sqlite db path, default "/tmp/rtt.sqlite"
docker compose example:
version: '3.3'
services:
rtt:
environment:
- TGTOKEN=foo
- TGCHATID=bar
volumes:
- "${PWD}/example-settings.yaml:/usr/src/app/settings.yaml"
- rttdata:/tmp
image: brokenpip3/rtt:0.0.2
volumes:
rttdata:
See kubernetes directory for example deployment