···11+Small utilities to enhance [Komodo](https://komo.do)
22+33+## Gotify Alerter
44+55+An [Alerter](https://komo.do/docs/resources#alerter) that pushes to [Gotify](https://gotify.net/)
66+77+[See README](/gotify/README.md)
+31
gotify/README.md
···11+A [Komodo](https://komo.do/) [Alerter](https://komo.do/docs/resources#alerter) for [Gotify](https://gotify.net/)
22+33+# Usage
44+55+Create a new container or stack with:
66+77+* Gotify URL as env `GOTIFY_URL`
88+* Gotify App Token as env `GOTIFY_API_KEY`
99+1010+```yaml
1111+1212+services:
1313+ komodo-gotify:
1414+ image: foxxmd/komodo-gotify-alerter:latest
1515+ environment:
1616+ - GOTIFY_URL=${GOTIFY_URL}
1717+ - GOTIFY_API_KEY=${GOTIFY_API_KEY}
1818+ ports:
1919+ - "7000:7000"
2020+```
2121+2222+Then, create a new Alerter of type `Custom` and point it to the IP of the started service:
2323+2424+```
2525+[[alerter]]
2626+name = "gotify"
2727+[alerter.config]
2828+enabled = true
2929+endpoint.type = "Custom"
3030+endpoint.params.url = "http://192.168.YOUR.IP:7000"
3131+```