From 15f79d91e36de84320e430697228f23c56645099 Mon Sep 17 00:00:00 2001 From: Pierre Belanger Date: Sun, 31 Dec 2023 08:28:34 -0500 Subject: [PATCH] Remove deprecated RTMP port 1935 (#9137) --- .devcontainer/devcontainer.json | 6 +----- docker/main/Dockerfile | 1 - docs/docs/frigate/installation.md | 1 - 3 files changed, 1 insertion(+), 7 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 0c460cfad..d0c1f2c9a 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -10,7 +10,7 @@ "features": { "ghcr.io/devcontainers/features/common-utils:1": {} }, - "forwardPorts": [5000, 5001, 5173, 1935, 8554, 8555], + "forwardPorts": [5000, 5001, 5173, 8554, 8555], "portsAttributes": { "5000": { "label": "NGINX", @@ -24,10 +24,6 @@ "label": "Vite Server", "onAutoForward": "silent" }, - "1935": { - "label": "RTMP", - "onAutoForward": "silent" - }, "8554": { "label": "gortc RTSP", "onAutoForward": "silent" diff --git a/docker/main/Dockerfile b/docker/main/Dockerfile index 32cb72df3..dbbdfc9b0 100644 --- a/docker/main/Dockerfile +++ b/docker/main/Dockerfile @@ -191,7 +191,6 @@ COPY --from=deps-rootfs / / RUN ldconfig EXPOSE 5000 -EXPOSE 1935 EXPOSE 8554 EXPOSE 8555/tcp 8555/udp diff --git a/docs/docs/frigate/installation.md b/docs/docs/frigate/installation.md index fcdaa68ba..c12e3de3a 100644 --- a/docs/docs/frigate/installation.md +++ b/docs/docs/frigate/installation.md @@ -295,7 +295,6 @@ docker run \ --network=bridge \ --privileged \ --workdir=/opt/frigate \ - -p 1935:1935 \ -p 5000:5000 \ -p 8554:8554 \ -p 8555:8555 \