Rocket.Chat
The rocketchat trigger posts container update messages to Rocket.Chat channels via incoming webhooks.
⚙️ Configuration Variables
Personal Access Token (PAT) of the sending account
Destination channel or user
Rocket.Chat workspace URL (e.g. https://chat.example.com)
User ID of the sending account
Custom sender display name (requires message-impersonate permission on the bot account)
Custom sender avatar image URL
Disable the default title heading to allow full custom message formatting
Custom sender avatar emoji
Generate link previews when message contains URLs
The destination channel must already exist on your Rocket.Chat workspace; WUD will not create missing channels automatically.
This trigger also supports all common trigger configuration options (such as thresholds, scheduling, and batching).
🚀 Examples
Post to a Public Channel
- Docker Compose
- Docker
services:
whatsupdocker:
image: getwud/wud
environment:
- WUD_TRIGGER_ROCKETCHAT_LOCAL_URL=https://chat.example.com
- WUD_TRIGGER_ROCKETCHAT_LOCAL_USER_ID=myUserId123
- WUD_TRIGGER_ROCKETCHAT_LOCAL_AUTH_TOKEN=mySecretPatToken
- WUD_TRIGGER_ROCKETCHAT_LOCAL_CHANNEL=#devops-alerts
docker run \
-e WUD_TRIGGER_ROCKETCHAT_LOCAL_URL="https://chat.example.com" \
-e WUD_TRIGGER_ROCKETCHAT_LOCAL_USER_ID="myUserId123" \
-e WUD_TRIGGER_ROCKETCHAT_LOCAL_AUTH_TOKEN="mySecretPatToken" \
-e WUD_TRIGGER_ROCKETCHAT_LOCAL_CHANNEL="#devops-alerts" \
getwud/wud
📖 Setup Guide: Generating a Personal Access Token
- Log in to Rocket.Chat and click your avatar (top left) > My Account.
- Select Personal Access Tokens.
- Enter a token name (e.g.
WUD) and click Add. - Copy the generated User ID and Token values into your WUD configuration.