Stop Relying on Paid Alerts Deploy Gotify for Instant Phone Notifications
TechSimpld
0:00 / 0:00
Stop Relying on Paid Alerts Deploy Gotify for Instant Phone Notifications
257 просмотров · 3 нед. назад
TechSimpld
184 подписчика
257 просмотров · 3 нед. назад
Whenever a home server disk runs low, a container crashes, or an automation finishes, you shouldn't have to keep checking web dashboards. And you definitely shouldn't have to pay for third-party notification services just to get pinged on your phone.
In this video, we deploy Gotify, an open-source, ultra-lightweight push notification server—using Docker in under two minutes. We'll break down the core difference between Gotify Apps and Clients, Connect our browser, and configure native push alerts directly inside Proxmox VE.
Docker Compose File:
services:
gotify:
image: gotify/server
container_name: gotify
restart: unless-stopped
ports:
8080:80
environment:
GOTIFY_DEFAULTUSER_PASS=ChangeThisPassword123
TZ=America/New_York
volumes:
./gotify_data:/app/data
Test Script:
curl "==GOTIFY SERVER==" \
-H "X-Gotify-Key: ==KEY==" \
-F "title=Server Alert" \
-F "message=System backup completed without errors!" \
-F "priority=0"
👉 Official Website: https://techsimpld.com
📧 Business Contact: techsimpld@gmail.com
#gotify #docker #proxmox #homelab #selfhosting #techsimpld #workflow