mirror of
https://github.com/tborychowski/self-hosted-cookbook.git
synced 2025-12-20 02:51:14 +00:00
more apps
This commit is contained in:
11
apps/notifications/notifiers-by-service.md
Normal file
11
apps/notifications/notifiers-by-service.md
Normal file
@@ -0,0 +1,11 @@
|
||||
# Notifiers by service
|
||||
|
||||
| Service | email | slack | webhook | script | telegram | discord | pushover | pushbullet | gotify |
|
||||
|------------------------|:-----:|:-----:|:-------:|:------:|:--------:|:-------:|:--------:|:----------:|:------:|
|
||||
| Statping | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ⛔️ | ⛔️ |
|
||||
| Sonarr | ✅ | ✅ | ✅ | ✅ | ✅ | ⛔️ | ✅ | ✅ | ⛔️ |
|
||||
| Radarr | ✅ | ✅ | ✅ | ✅ | ✅ | ⛔️ | ✅ | ✅ | ✅ |
|
||||
| Tautulli | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ⛔️ |
|
||||
| synology-notifications | ✅ | ✅ | ⛔️ | ⛔️ | ⛔️ | ⛔️ | ⛔️ | ⛔️ | ⛔️ |
|
||||
| download station | ✅ | ✅ | ⛔️ | ⛔️ | ⛔️ | ⛔️ | ⛔️ | ⛔️ | ⛔️ |
|
||||
| qbittorrent | ✅ | ⛔️ | ✅ | ✅ | ⛔️ | ⛔️ | ⛔️ | ⛔️ | ⛔️ |
|
||||
35
apps/notifications/pushover.md
Normal file
35
apps/notifications/pushover.md
Normal file
@@ -0,0 +1,35 @@
|
||||
# Pushover
|
||||
|
||||
- As of today, the best notifier out there
|
||||
- Has mobile app and web desktop client
|
||||
- Provides email-to-notification service
|
||||
- Free tier sufficient for a homelab
|
||||
|
||||
<br>
|
||||
|
||||
- [Homepage](https://pushover.net)
|
||||
- [Web Client](https://client.pushover.net)
|
||||
- [Docs](https://pushover.net/api#messages)
|
||||
|
||||
|
||||
## Example script
|
||||
```sh
|
||||
#!/bin/bash
|
||||
|
||||
# info #666d7b
|
||||
# success #408062
|
||||
# warning #af8a1a
|
||||
# danger #8b4848
|
||||
|
||||
MSG=$(printf "<font color=\"#408062\">%s</font>" "$@")
|
||||
|
||||
curl -s -X POST \
|
||||
--data-urlencode "token=<app key>" \
|
||||
--data-urlencode "user=<user key>" \
|
||||
--data-urlencode "sound=pushover" \
|
||||
--data-urlencode "priority=0" \
|
||||
--data-urlencode "html=1" \
|
||||
--data-urlencode "title=Home Server" \
|
||||
--data-urlencode "message=$MSG" \
|
||||
https://api.pushover.net/1/messages.json
|
||||
```
|
||||
42
apps/notifications/synology-sms-relay.md
Normal file
42
apps/notifications/synology-sms-relay.md
Normal file
@@ -0,0 +1,42 @@
|
||||
# Synology sms relay
|
||||
|
||||
- [Github repo](https://github.com/tborychowski/synology-sms-relay)
|
||||
- [DockerHub repo](https://hub.docker.com/repository/docker/tborychowski/synology-sms-relay)
|
||||
- [Docs](https://github.com/tborychowski/synology-sms-relay#docker-compose)
|
||||
|
||||
|
||||
## docker-compose.yml
|
||||
```yml
|
||||
---
|
||||
version: '3.7'
|
||||
services:
|
||||
synology-sms-relay:
|
||||
container_name: synology-sms-relay
|
||||
image: tborychowski/synology-sms-relay
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "3000:3000"
|
||||
volumes:
|
||||
- ./script.sh:/app/script.sh
|
||||
```
|
||||
|
||||
## Example pushover `script.sh`
|
||||
```sh
|
||||
#!/bin/bash
|
||||
|
||||
# info #666d7b
|
||||
# success #408062
|
||||
# warning #af8a1a
|
||||
# danger #8b4848
|
||||
|
||||
MSG=$(printf "<font color=\"#408062\">%s</font>" "$@")
|
||||
curl -s -X POST \
|
||||
--data-urlencode "token=<app key>" \
|
||||
--data-urlencode "user=<user key>" \
|
||||
--data-urlencode "sound=pushover" \
|
||||
--data-urlencode "priority=0" \
|
||||
--data-urlencode "html=1" \
|
||||
--data-urlencode "title=Home Server" \
|
||||
--data-urlencode "message=$MSG" \
|
||||
https://api.pushover.net/1/messages.json
|
||||
```
|
||||
Reference in New Issue
Block a user