Home Catalogus LoRa Letterbox Notifier
general

LoRa Letterbox Notifier

A smart home IoT notification service that monitors LoRa-enabled mailbox sensors and sends real-time alert notifications when physical mail is delivered.

ARM64 & AMD64
Docker & Rootless Podman
100% Self-Hosted (Geen Lock-in)
RAM Profiel: Gemiddeld
Standaard Poort: Port 8083

Waarom deze configuratie?

Snelle Start (Standalone Docker Compose)

Onderstaand compose-fragment is direct te gebruiken in elke Docker- of Podman-omgeving:

services:
    chirpstack:
        image: chirpstack/chirpstack:4
        command: -c /etc/chirpstack
        restart: unless-stopped
        volumes:
            - ./configuration/chirpstack:/etc/chirpstack
        depends_on:
            - postgres
            - mosquitto_lora
            - redis
        environment:
            - MQTT_SERVER=mosquitto_lora:1883
            - POSTGRESQL_DSN=postgres://chirpstack:"ChangeMeSecurePassword123!"@postgres/chirpstack?sslmode=disable
            - REDIS_URL=redis://redis:6379/0
        ports:
            - "8083:8080"

    mosquitto_lora:
        image: eclipse-mosquitto:2
        restart: unless-stopped
        container_name: mosquitto_lora
        ports:
            - "18884:1883"
        volumes:
            - ./configuration/mosquitto_lora/mosquitto.conf:/mosquitto/config/mosquitto.conf

    chirpstack-gateway-bridge:
        image: chirpstack/chirpstack-gateway-bridge:4
        restart: unless-stopped
        depends_on:
            - mosquitto_lora
        ports:
            - "1700:1700/udp"
        environment:
            - INTEGRATION__MQTT__AUTH__GENERIC__SERVER=tcp://mosquitto_lora:1883

    postgres:
        image: postgres:14-alpine
        restart: unless-stopped
        environment:
            - POSTGRES_PASSWORD="ChangeMeSecurePassword123!"
            - POSTGRES_USER=chirpstack
            - POSTGRES_DB=chirpstack
        volumes:
            - ./data/postgres:/var/lib/postgresql/data

    redis:
        image: redis:7-alpine
        restart: unless-stopped
        volumes:
            - ./data/redis:/data

Start de service direct via de commandline: docker compose up -d

Configuratie & Omgevingsvariabelen

Belangrijkste configuratieparameters en standaardwaarden uit de NjordDeploy component-sjabloon:

Variable Default Value Description
CHIRPSTACK_WEB_UI_PORT 8083 Access to the dashboard of of Chirpstack
LORA_MQTT_PORT 18884 Port for the MQTT broker
LORA_GATEWAY_PORT 1700
CHIRPSTACK_DB_PASSWORD *None*
MQTT_BROKER mosquitto_lora

Ecosysteem & Bedrijfsintegratie

Eenvoudig beheren via NjordDeploy

Installeer, bewaak en update deze service met 1 klik op uw eigen Raspberry Pi of Proxmox server via de NjordDeploy Configurator.