Remove deprecated RTMP port 1935 (#9137)

This commit is contained in:
Pierre Belanger 2023-12-31 08:28:34 -05:00 committed by Blake Blackshear
parent 928dbd8335
commit 15f79d91e3
3 changed files with 1 additions and 7 deletions

View File

@ -10,7 +10,7 @@
"features": { "features": {
"ghcr.io/devcontainers/features/common-utils:1": {} "ghcr.io/devcontainers/features/common-utils:1": {}
}, },
"forwardPorts": [5000, 5001, 5173, 1935, 8554, 8555], "forwardPorts": [5000, 5001, 5173, 8554, 8555],
"portsAttributes": { "portsAttributes": {
"5000": { "5000": {
"label": "NGINX", "label": "NGINX",
@ -24,10 +24,6 @@
"label": "Vite Server", "label": "Vite Server",
"onAutoForward": "silent" "onAutoForward": "silent"
}, },
"1935": {
"label": "RTMP",
"onAutoForward": "silent"
},
"8554": { "8554": {
"label": "gortc RTSP", "label": "gortc RTSP",
"onAutoForward": "silent" "onAutoForward": "silent"

View File

@ -191,7 +191,6 @@ COPY --from=deps-rootfs / /
RUN ldconfig RUN ldconfig
EXPOSE 5000 EXPOSE 5000
EXPOSE 1935
EXPOSE 8554 EXPOSE 8554
EXPOSE 8555/tcp 8555/udp EXPOSE 8555/tcp 8555/udp

View File

@ -295,7 +295,6 @@ docker run \
--network=bridge \ --network=bridge \
--privileged \ --privileged \
--workdir=/opt/frigate \ --workdir=/opt/frigate \
-p 1935:1935 \
-p 5000:5000 \ -p 5000:5000 \
-p 8554:8554 \ -p 8554:8554 \
-p 8555:8555 \ -p 8555:8555 \