Bark (iOS Push)
The Bark trigger lets you send native iOS push notifications to your iPhone or iPad using the Bark server or cloud service.
⚙️ Configuration Variables
WUD_TRIGGER_BARK_{trigger_name}_DEVICEKEY
Requiredstring
Bark device key provided by your iOS Bark application
WUD_TRIGGER_BARK_{trigger_name}_BADGE
Optionalinteger
Optional numeric badge count displayed on the Bark application icon
WUD_TRIGGER_BARK_{trigger_name}_DISABLETITLE
Optionalbooleandefault: false
Whether to omit the notification title
WUD_TRIGGER_BARK_{trigger_name}_GROUP
Optionalstringdefault: WUD
Notification group name for notification clustering on iOS
WUD_TRIGGER_BARK_{trigger_name}_ICON
Optionalurl
Custom icon image URL to display on the iOS notification
WUD_TRIGGER_BARK_{trigger_name}_SOUND
Optionalstring
Custom alert ringtone/sound name available in Bark
WUD_TRIGGER_BARK_{trigger_name}_URL
Optionalurldefault: https://api.day.app
Bark server URL (defaults to official public server, or your self-hosted Bark instance)
WUD_TRIGGER_BARK_{trigger_name}_URLTOOPEN
Optionalurl
URL to open when clicking the notification (defaults to the container changelog/registry link)
info
This trigger also supports all common trigger configuration options (such as thresholds, scheduling, and batching).
🚀 Examples
Basic Push Notification
- Docker Compose
- Docker
services:
whatsupdocker:
image: getwud/wud
environment:
- WUD_TRIGGER_BARK_IPHONE_DEVICEKEY=your_bark_device_key_here
- WUD_TRIGGER_BARK_IPHONE_GROUP=Homelab
docker run \
-e WUD_TRIGGER_BARK_IPHONE_DEVICEKEY="your_bark_device_key_here" \
-e WUD_TRIGGER_BARK_IPHONE_GROUP="Homelab" \
getwud/wud