d.rymcg.tech icon indicating copy to clipboard operation
d.rymcg.tech copied to clipboard

Frigate

Open mcmikemn opened this issue 11 months ago • 2 comments

Implements #393

mcmikemn avatar Feb 14 '25 13:02 mcmikemn

@EnigmaCurry: this is working in that Frigate gets installed, the basics get configured, and you can log into it. I don't have any cameras to test video streaming so it's possible that I'll need to add something to docker-compose.instance.yaml for RTSP and WebRTC (https://docs.frigate.video/frigate/installation/#docker).

mcmikemn avatar Feb 14 '25 14:02 mcmikemn

For the extra ports needed, theres a few options:

Add entrypoint through traefik. This has the benefit that you can bind to specific host ip address and apply an ip whitelist. But this has the overhead of passing large video frames through traefik.

Add the port mapping directly in docker compose. We dont normally do this, but it might be preferred for constant video ingest.(no traefik overhead) however you lose the ip filter so you would want to be sure to bind it to a specific host ip address so its not publicly accessible.

EnigmaCurry avatar Feb 14 '25 16:02 EnigmaCurry