Last active
January 27, 2025 09:22
-
-
Save remcomokveld/607e03272e74d052b8412c57684fdc74 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
services: | |
frigate: | |
container_name: frigate | |
depends_on: | |
- nestmtx | |
restart: unless-stopped | |
image: ghcr.io/blakeblackshear/frigate:stable | |
shm_size: "64mb" | |
volumes: | |
- /etc/localtime:/etc/localtime:ro | |
- /Users/remco/docker-frigate/config:/config | |
- /Users/remco/docker-frigate/files:/media/frigate | |
ports: | |
- "8971:8971" | |
- "5001:5000" | |
- "8556:8554" | |
- "8555:8555/tcp" | |
- "8555:8555/udp" | |
nestmtx: | |
image: nestmtx/arm64:latest | |
container_name: nestmtx | |
restart: unless-stopped | |
environment: | |
- RTP_MAX_PORT=10100 | |
- MEDIA_MTX_RTSP_PLAYBACK_PORT=9997 | |
- MEDIA_MTX_RTSP_ENABLED=true | |
- MEDIA_MTX_RTMP_ENABLED=false | |
- MEDIA_MTX_HLS_ENABLED=false | |
- MEDIA_MTX_WEB_RTC_ENABLED=false | |
- MEDIA_MTX_SRT_ENABLED=false | |
volumes: | |
- /Users/remco/docker-frigate/nmtx:/home/node/app/tmp | |
ports: | |
- "2001:2000" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment