Frigate MQTT NOTIFIER
  • Python 92.6%
  • Dockerfile 7.4%
Find a file
csd4ni3l 2304f42e42
All checks were successful
ci / build (push) Successful in 3m27s
Make Forgejo Actions trigger
2026-06-06 16:25:06 +02:00
.forgejo/workflows Update for Forgejo Actions/Packages 2026-06-06 16:23:15 +02:00
.gitignore add uv lock and python-version, fix some imports missing 2025-04-23 17:43:52 +02:00
.python-version add uv lock and python-version, fix some imports missing 2025-04-23 17:43:52 +02:00
app.py add uv lock and python-version, fix some imports missing 2025-04-23 17:43:52 +02:00
Dockerfile Initial commit 2025-04-20 19:01:15 +02:00
LICENSE Initial commit 2025-04-20 19:01:15 +02:00
pyproject.toml Initial commit 2025-04-20 19:01:15 +02:00
README.md Update for Forgejo Actions/Packages 2026-06-06 16:23:15 +02:00
requirements.txt Make Forgejo Actions trigger 2026-06-06 16:25:06 +02:00
uv.lock add uv lock and python-version, fix some imports missing 2025-04-23 17:43:52 +02:00

A docker container/Python app that watches for MQTT Frigate events and sends them to an Ntfy server.

To deploy it, you can use the official image:

services:
  frigate-mqtt-notifier:
    image: git.csd4ni3l.hu/csd4ni3l/frigate-mqtt-notifier:latest
    container_name: frigate-mqtt-notifier
    environment:
      - LOG_LEVEL=INFO
      - MQTT_BROKER_IP=eclipse-mosquitto
      - MQTT_BROKER_PORT=1883
      - MQTT_CLIENT_ID=frigate-mqtt-notifier
      - MQTT_BROKER_USERNAME=
      - MQTT_BROKER_PASSWORD=
      - MESSAGE_TIMEOUT=5
      - FRIGATE_BASE_URL=http://frigate:5000
      - NTFY_SERVER_URL=https://ntfy.sh
      - NTFY_TOPIC=frigate-events
      - NTFY_USERNAME=
      - NTFY_PASSWORD=
    restart: unless-stopped