Skip to content

v1.4.0-beta.2

Compare
Choose a tag to compare
@luc-ass luc-ass released this 13 Dec 08:07

New Features

  • Added support for container-specific Telegram notifications via Docker labels
    • telegram-notifier.chat-id: Override default chat ID for specific containers
    • telegram-notifier.topic-id or telegram-notifier.thread-id: Override default thread/topic ID for specific containers

Example Usage

services:
  critical-app:
    image: my-app
    labels:
      telegram-notifier.chat-id: "-100123456789"  # Urgent notifications channel
      telegram-notifier.topic-id: "54321"         # Dedicated thread

  regular-app:
    image: another-app
    labels:
      telegram-notifier.monitor: true             # Uses global channel settings

Notes

  • All label overrides are optional
  • Global settings from environment variables will be used when labels are not specified
  • Compatible with existing monitor label functionality

Full Changelog: v1.4.0-beta.1...v1.4.0-beta.2