fmartinou / whats-up-docker

What's up Docker ( aka WUD ) gets you notified when a new version of your Docker Container is available.
https://fmartinou.github.io/whats-up-docker
MIT License
984 stars 32 forks source link

Telegram notifications problem #415

Closed raelyan closed 1 month ago

raelyan commented 1 month ago

I'm trying to get notifications to Telegram and there's no way.

From what it says in the documentation it is quite simple, only 2 variables are needed.

Are there any limitations in this regard? I come from Watchtower and I have a bot in a Channel. Are Telegram Channels compatible?

This is my docker compose code, about environment part:

environment:
  - WUD_WATCHER_LOCAL_HOST=socket-proxy
  - WUD_SERVER_PORT=3002
  - TZ=Europe/Madrid
  - WUD_AUTH_BASIC_ADMIN_USER=admin
  - WUD_AUTH_BASIC_ADMIN_HASH__FILE=/run/secrets/wud_admin_auth
  - WUD_TRIGGER_TELEGRAM_1_BOTTOKEN=XXXXXXXX:XXXXXXXXXXXXXXXXXXXXXXX
  - WUD_TRIGGER_TELEGRAM_1_CHATID=-XXXXXXXXXXX

Regards