DrydockDrydock
ConfigurationTriggers

Google Chat

The googlechat trigger posts container update notifications to a Google Chat space via an incoming webhook.

The googlechat trigger posts container update notifications to a Google Chat space via an incoming webhook.

Variables

Env varRequiredDescriptionSupported valuesDefault value when missing
DD_TRIGGER_GOOGLECHAT_{trigger_name}_URL🔴Incoming webhook URLhttps URL
DD_TRIGGER_GOOGLECHAT_{trigger_name}_THREADKEYThread key for grouping messages into a threadString
DD_TRIGGER_GOOGLECHAT_{trigger_name}_MESSAGEREPLYOPTIONReply behavior when threadkey is setREPLY_MESSAGE_FALLBACK_TO_NEW_THREAD, REPLY_MESSAGE_OR_FAIL
DD_TRIGGER_GOOGLECHAT_{trigger_name}_DISABLETITLEDisable title to keep full message-body controltrue, falsefalse
This trigger also supports the common configuration variables.
See the Google Chat incoming webhooks documentation for endpoint setup details.

Examples

services:
  drydock:
    image: codeswhat/drydock
    ...
    environment:
      - DD_TRIGGER_GOOGLECHAT_LOCAL_URL=https://chat.googleapis.com/v1/spaces/xxx/messages?key=abc&token=xyz
docker run \
  -e DD_TRIGGER_GOOGLECHAT_LOCAL_URL="https://chat.googleapis.com/v1/spaces/xxx/messages?key=abc&token=xyz" \
  ...
  codeswhat/drydock

On this page