From 170899bd71f7d525261597bef3d4e1766ab7b3dc Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Fri, 13 Jan 2023 16:18:18 -0700 Subject: [PATCH] Update to Go2rtc rc8 (#5078) * Remove redundant default port * Update version * Suggest port mapping 8555 tcp and udp --- Dockerfile | 2 +- docs/docs/configuration/live.md | 1 - docs/docs/frigate/installation.md | 4 ++++ 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b953bd0e9..d03576919 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,7 +27,7 @@ RUN --mount=type=tmpfs,target=/tmp --mount=type=tmpfs,target=/var/cache/apt \ FROM wget AS go2rtc ARG TARGETARCH WORKDIR /rootfs/usr/local/go2rtc/bin -RUN wget -qO go2rtc "https://github.com/AlexxIT/go2rtc/releases/download/v0.1-rc.7/go2rtc_linux_${TARGETARCH}" \ +RUN wget -qO go2rtc "https://github.com/AlexxIT/go2rtc/releases/download/v0.1-rc.8/go2rtc_linux_${TARGETARCH}" \ && chmod +x go2rtc diff --git a/docs/docs/configuration/live.md b/docs/docs/configuration/live.md index fa4901f5e..d0353cb34 100644 --- a/docs/docs/configuration/live.md +++ b/docs/docs/configuration/live.md @@ -28,7 +28,6 @@ log: format: text webrtc: - listen: ":8555" candidates: - :8555 # <--- enter Frigate host IP here - stun:8555 diff --git a/docs/docs/frigate/installation.md b/docs/docs/frigate/installation.md index 9e8f68614..72b2c9ef2 100644 --- a/docs/docs/frigate/installation.md +++ b/docs/docs/frigate/installation.md @@ -120,6 +120,8 @@ services: ports: - "5000:5000" - "8554:8554" # RTSP feeds + - "8555:8555/tcp" # WebRTC over tcp + - "8555:8555/udp" # WebRTC over udp environment: FRIGATE_RTSP_PASSWORD: "password" ``` @@ -140,6 +142,8 @@ docker run -d \ -e FRIGATE_RTSP_PASSWORD='password' \ -p 5000:5000 \ -p 8554:8554 \ + -p 8555:8555/tcp \ + -p 8555:8555/udp \ ghcr.io/blakeblackshear/frigate:stable ```