mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 22:41:09 +02:00
🔧 chore(watchtower): switch to n8n webhook for notifications
Switch from direct Telegram URL (which has parsing issues with colon in bot token) to generic HTTP webhook via n8n for reliable notifications. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
882053251d
commit
cacebabe55
1 changed files with 4 additions and 3 deletions
|
|
@ -740,10 +740,11 @@ services:
|
|||
WATCHTOWER_POLL_INTERVAL: 300 # Check every 5 minutes
|
||||
WATCHTOWER_CLEANUP: "true" # Remove old images
|
||||
WATCHTOWER_INCLUDE_STOPPED: "false" # Only update running containers
|
||||
WATCHTOWER_DEBUG: "true" # Enable debug logging
|
||||
WATCHTOWER_NOTIFICATION_REPORT: "true" # Always send notification on update
|
||||
# Notifications via generic webhook to n8n (which forwards to Telegram)
|
||||
# This avoids URL parsing issues with Telegram bot tokens containing colons
|
||||
WATCHTOWER_NOTIFICATIONS: shoutrrr
|
||||
WATCHTOWER_NOTIFICATION_URL: "telegram://${TELEGRAM_BOT_TOKEN}@telegram/?chats=${TELEGRAM_CHAT_ID}"
|
||||
WATCHTOWER_NOTIFICATION_REPORT: "true" # Always send notification (for testing)
|
||||
WATCHTOWER_NOTIFICATION_URL: "generic+http://n8n:5678/webhook/watchtower"
|
||||
|
||||
# ============================================
|
||||
# Volumes
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue