Replies: 1 comment
-
|
Took me a bit to solve this one, but you can accomplish this with a custom script. I am currently using an app called Scrutiny that utilizes these shoutrr urls, so in my version: 1
notify:
urls:
- "script:///opt/scrutiny/config/ntfy.sh"and then create a script called #! /bin/bash
curl 'http://ntfy/topic/publish?message=Hard+drive+errors+detected!&priority=high'notice that my curl address is not a domain nor an IP address, it's simply This worked for me with a docker network that had no internet access to allow notifications to get through. The script I showed here is very basic and gets the job done in notifying you that something is wrong, but is not very descriptive of course .. I plan on making this If you create a better script at any point feel free to post it ! hope this helps. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I container that I use uses this shoutrrr library but it contact my ntfy instance by https.
The problem is that I want this container to contact my ntfy instance using the docker network without TLS
Beta Was this translation helpful? Give feedback.
All reactions