Periodically checks the public IP and sends a ntfy notification if it changed since last check.
334
Periodically checks the public IP (cron schedule) and sends a ntfy notification if it changed since last check.
CRON_SCHEDULE=* * * * *
NTFY_SERVER=https://ntfy.sh/ # <- trailing slash
NTFY_TOPIC=public-ip-changed
docker run -d --name ip-change-ntfy -e CRON_SCHEDULE="* * * * *" -e NTFY_SERVER=https://ntfy.sh/ -e NTFY_TOPIC=public-ip-changed madtiago/ip-change-ntfy
services:
ip-change-ntfy:
image: madtiago/ip-change-ntfy:latest
container_name: ip-change-ntfy
restart: always
environment:
- CRON_SCHEDULE=* * * * *
- NTFY_SERVER=https://ntfy.sh/
- NTFY_TOPIC=public-ip-changed
Content type
Image
Digest
sha256:5e8c3c42f…
Size
62.6 MB
Last updated
over 1 year ago
docker pull madtiago/ip-change-ntfy