ConfigurationActions & NotificationsTelegram
Telegram
The telegram trigger lets you send realtime notifications using Telegram bots.

The telegram trigger lets you send realtime notifications using Telegram bots.
Variables
| Env var | Required | Description | Supported values | Default value when missing |
|---|---|---|---|---|
DD_NOTIFICATION_TELEGRAM_{trigger_name}_BOTTOKEN | 🔴 | The Bot token | ||
DD_NOTIFICATION_TELEGRAM_{trigger_name}_CHATID | 🔴 | The Chat ID | ||
DD_NOTIFICATION_TELEGRAM_{trigger_name}_DISABLETITLE | ⚪ | Disable title to have full control over the message formatting | true, false | false |
DD_NOTIFICATION_TELEGRAM_{trigger_name}_MESSAGEFORMAT | ⚪ | Send the message as markdown or as html (useful for custom message formatting). Markdown uses Telegram's MarkdownV2 parse mode, which requires escaping special characters. Case-insensitive. | Markdown, HTML | Markdown |
This trigger also supports the common configuration variables.
Examples
Configuration
services:
drydock:
image: codeswhat/drydock
...
environment:
- DD_NOTIFICATION_TELEGRAM_1_BOTTOKEN=replace-with-your-telegram-bot-token
- DD_NOTIFICATION_TELEGRAM_1_CHATID=9876543210docker run \
-e DD_NOTIFICATION_TELEGRAM_1_BOTTOKEN="replace-with-your-telegram-bot-token" \
-e DD_NOTIFICATION_TELEGRAM_1_CHATID="9876543210" \
...
codeswhat/drydock