Update to Go2rtc rc8 (#5078)

* Remove redundant default port

* Update version

* Suggest port mapping 8555 tcp and udp
This commit is contained in:
Nicolas Mowen 2023-01-13 16:18:18 -07:00 committed by GitHub
parent 2031c3146f
commit 170899bd71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 2 deletions

View File

@ -27,7 +27,7 @@ RUN --mount=type=tmpfs,target=/tmp --mount=type=tmpfs,target=/var/cache/apt \
FROM wget AS go2rtc FROM wget AS go2rtc
ARG TARGETARCH ARG TARGETARCH
WORKDIR /rootfs/usr/local/go2rtc/bin 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 && chmod +x go2rtc

View File

@ -28,7 +28,6 @@ log:
format: text format: text
webrtc: webrtc:
listen: ":8555"
candidates: candidates:
- <Frigate host ip address>:8555 # <--- enter Frigate host IP here - <Frigate host ip address>:8555 # <--- enter Frigate host IP here
- stun:8555 - stun:8555

View File

@ -120,6 +120,8 @@ services:
ports: ports:
- "5000:5000" - "5000:5000"
- "8554:8554" # RTSP feeds - "8554:8554" # RTSP feeds
- "8555:8555/tcp" # WebRTC over tcp
- "8555:8555/udp" # WebRTC over udp
environment: environment:
FRIGATE_RTSP_PASSWORD: "password" FRIGATE_RTSP_PASSWORD: "password"
``` ```
@ -140,6 +142,8 @@ docker run -d \
-e FRIGATE_RTSP_PASSWORD='password' \ -e FRIGATE_RTSP_PASSWORD='password' \
-p 5000:5000 \ -p 5000:5000 \
-p 8554:8554 \ -p 8554:8554 \
-p 8555:8555/tcp \
-p 8555:8555/udp \
ghcr.io/blakeblackshear/frigate:stable ghcr.io/blakeblackshear/frigate:stable
``` ```