I tried all the camera platforms so you don't have to

Here’s the docker compose. It hasn’t been quite as perfect as it seemed as first. It will run solid for a day or 2, but then 1 or more cameras will drop off for 10-15 minutes and come back… So still not perfect, but the quality is amazing and I haven’t found any perfect solution so I’m staying with this one for now.

version: '2'
services:
  proxy:
    image: migoller/live555proxyserverdocker
    command: -v "rtsp://uname:[email protected]:554/Streaming/Channels/101?transportmode=unicast" "rtsp://uname:[email protected]:554/Streaming/Channels/101?transportmode=unicast" "rtsp://uname:[email protected]:554/Streaming/Channels/101?transportmode=unicast" "rtsp://uname:[email protected]:554/Streaming/Channels/101?transportmode=unicast"
    volumes:
      - /etc/localtime:/etc/localtime:ro
      - /etc/timezone:/etc/timezone:ro
    ports:
      - "554:554"
      - "8080:80"
2 Likes