logo
noflcl
Mqtt
Initializing search
    • blogadocious
    • nixOS
      • All Posts
        • 2024
        • Admin
        • Android
        • Cabling
        • Geek
        • HomeAssistant
        • Logging
        • RaspberryPi
        • Self-Hosted
        • Windows
      • Audiobookshelf
      • Bitwarden
      • Changedetection
      • Diun
      • Ente
      • ESPhome
      • F-Droid Server
      • FileBrowser
      • fireflii
      • Forgejo Runner
      • Ghost
      • Grocy
      • Home Assistant
      • Jellyfin
      • Matrix
      • Mkdocs
      • Mqtt
      • Nextcloud
      • searXNG
      • Ser2net
      • Snipe it
      • Swag
      • Tandoor
      • Tinymediamanager
      • tsdproxy
      • Vikunja
      • Webtop
      • Wger
      • Wikijs
      • Ytdl
      • ADB
      • Arrg r/o
      • Audiobooks Offline
      • Creating Cloud Assets
      • devilspie2
      • Encrypted Server
      • fio
      • Forgejo Runners
      • git Reference
      • GPG 🔒
      • GRUB Password
      • Jellyfin
      • KVM
      • LUKS
      • MacOS Notes
      • miniDLNA Icon
      • Nextcloud Snap
      • Nix Remote Shares
      • NixOS
      • Rogers
      • sops nixos
      • SSH
      • Steam Server
      • Systemd Services
      • Tmux
      • VSCode
      • Windows Password Reset
      • Wireguard
      • YubiKey
      • ZFS
        • f-droid
        • Fire HD 8
        • SM-T310 WiFi
        • Kiosk Pi
        • Master Pi
        • feh

    Mqtt

    mousquitto.conf

    allow_anonymous true
    listener 1883
    persistence true
    

    ---
    
    services:
      mqtt:
        image: eclipse-mosquitto:latest
        container_name: mqtt
        restart: unless-stopped
        ports:
          - "1883:1883"
          - "9001:9001"
        volumes:
          - ./mosquitto.conf:/mosquitto/config/mosquitto.conf
          - ${DATA-MQTT-CONFIG}:/mqtt/config:ro
          - ${DATA-MQTT-LOG}:/mqtt/log
          - ${DATA-MQTT-DATA}:/mqtt/data
    
    Made with Material for MkDocs