mirror of
https://github.com/binwiederhier/ntfy.git
synced 2024-11-23 03:43:47 +01:00
Merge pull request #150 from rogeliodh/patch-1
add watchtower/shoutrrr examples
This commit is contained in:
commit
2eff8d6b47
1 changed files with 18 additions and 0 deletions
|
@ -75,3 +75,21 @@ One of my co-workers uses the following Ansible task to let him know when things
|
||||||
method: POST
|
method: POST
|
||||||
body: "{{ inventory_hostname }} reseeding complete"
|
body: "{{ inventory_hostname }} reseeding complete"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Watchtower notifications (shoutrrr)
|
||||||
|
You can use `shoutrrr` generic webhook support to send watchtower notifications to your ntfy topic.
|
||||||
|
|
||||||
|
Example docker-compose.yml:
|
||||||
|
```yml
|
||||||
|
services:
|
||||||
|
watchtower:
|
||||||
|
image: containrrr/watchtower
|
||||||
|
environment:
|
||||||
|
- WATCHTOWER_NOTIFICATIONS=shoutrrr
|
||||||
|
- WATCHTOWER_NOTIFICATION_URL=generic+https://ntfy.sh/my_watchtower_topic?title=WatchtowerUpdates
|
||||||
|
```
|
||||||
|
|
||||||
|
Or, if you only want to send notifications using shoutrrr:
|
||||||
|
```
|
||||||
|
shoutrrr send -u "generic+https://ntfy.sh/my_watchtower_topic?title=WatchtowerUpdates" -m "testMessage"
|
||||||
|
```
|
||||||
|
|
Loading…
Reference in a new issue