Docker Installation
There is a known issue with docker which prohibits using Docker Desktop clients which do not support
--network=host
.
In simple terms, you cannot expose a range of 10000 ports (required for RTSP RTP) without using a prohibitivly huge amount of memory. For this reason, this tutorial assumes that you are using Docker for Linux.
The current docker images are bundled with the official version of Google Chrome due to Chromiums inability to process H264 WebRTC Feeds.
Using this image means that you agree to Google's Terms and Conditions for using Chrome. If you do not wish to use Google Chome, you can use images tagged with
-nochrome
.
Prerequisites
Ensure that you have the following information:
Additionally, you can specify the following optional environmental variables per your own specifications. Note: changing these values may cause unintended behavior.
Pulling the latest image
The latest stable docker image of Nest RTSP is always accessible at registry.gitlab.jak.guru:5005/jakg/nest-rtsp:stable
or jakguru/nest-rtsp:stable
. You can pull it using the following command:
docker pull registry.gitlab.jak.guru:5005/jakg/nest-rtsp:stable
docker pull registry.gitlab.jak.guru:5005/jakg/nest-rtsp:stable
docker pull jakguru/nest-rtsp:stable
docker pull jakguru/nest-rtsp:stable
Deploying Nest RTSP
The following is an example command to deploy Nest RTSP
docker run -d \
--network=host \
--name="nest-rtsp" \
--restart=unless-stopped \
-e GA_OAUTH_CID= \
-e GA_OAUTH_CS= \
-e GA_SDM_PID= \
-e GA_OAUTH_RDR= \
-e DEBUG=nest-rtsp:* \
registry.gitlab.jak.guru:5005/jakg/nest-rtsp:stable
docker run -d \
--network=host \
--name="nest-rtsp" \
--restart=unless-stopped \
-e GA_OAUTH_CID= \
-e GA_OAUTH_CS= \
-e GA_SDM_PID= \
-e GA_OAUTH_RDR= \
-e DEBUG=nest-rtsp:* \
registry.gitlab.jak.guru:5005/jakg/nest-rtsp:stable
docker run -d \
--network=host \
--name="nest-rtsp" \
--restart=unless-stopped \
-e GA_OAUTH_CID= \
-e GA_OAUTH_CS= \
-e GA_SDM_PID= \
-e GA_OAUTH_RDR= \
-e DEBUG=nest-rtsp:* \
jakguru/nest-rtsp:stable
docker run -d \
--network=host \
--name="nest-rtsp" \
--restart=unless-stopped \
-e GA_OAUTH_CID= \
-e GA_OAUTH_CS= \
-e GA_SDM_PID= \
-e GA_OAUTH_RDR= \
-e DEBUG=nest-rtsp:* \
jakguru/nest-rtsp:stable
Fill out the fields below to update the example command.
Checking Status
Nest RTSP has now been installed. You can check whether the Nest RTSP has started by running docker ps
docker ps
docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
06ca486a9154 registry.gitlab.jak.guru:5005/jakg/nest-rtsp:stable "docker-entrypoint.s…" 2 minutes ago Up 2 minutes 554/tcp, 554/udp, 10000-20000/tcp, 10000-20000/udp, 0.0.0.0:3000->3000/tcp nest-rtsp
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
06ca486a9154 registry.gitlab.jak.guru:5005/jakg/nest-rtsp:stable "docker-entrypoint.s…" 2 minutes ago Up 2 minutes 554/tcp, 554/udp, 10000-20000/tcp, 10000-20000/udp, 0.0.0.0:3000->3000/tcp nest-rtsp