mjeoffline/viewu

By mjeoffline

Updated 9 months ago

Viewu Server acts as a backend system for the Viewu app, which is designed to integrate with Frigate

Image
Integration & Delivery
Message Queues
0

1.2K

Viewu, an iOS application, facilitates the utilization of Frigate NVR for observing event timelines, accessing live RTSP feeds, and receiving Apple Push Notifications containing images. Primarily employed for security endeavors, Viewu empowers users to oversee and capture video content from network-connected security cameras.

www.viewu.app

Docker Compose File

services:
  viewu:
    container_name: viewu
    restart: unless-stopped
    # image options are mjeoffline/viewu:amd64 or mjeoffline/viewu:arm64
    image: mjeoffline/viewu:amd64
    environment:
      MQTT_PORT: 1883
      MQTT_IP: 127.0.0.1 
      # For anonymous connections, leave MQTT_USER and MQTT_PASSWORD blank
      MQTT_USER: username_goes_here
      MQTT_PASSWORD: password_goes_here

Docker Pull Command

docker pull mjeoffline/viewu