Guest User

frigate_Rock5b_compose

a guest
Oct 19th, 2025
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. services:
  2. frigate:
  3. container_name: frigate
  4. privileged: true # this may not be necessary for all setups
  5. restart: unless-stopped
  6. stop_grace_period: 30s # allow enough time to shut down the various services
  7. image: ghcr.io/blakeblackshear/frigate:0.16.1-rk
  8. shm_size: "512mb" # update for your cameras based on calculation above
  9. #security_opt:
  10. # - apparmor=unconfined
  11. # - systempaths=unconfined
  12. devices:
  13. - /dev/dri
  14. - /dev/dma_heap
  15. - /dev/rga
  16. - /dev/mpp_service
  17. #- /dev/dri/renderD128:/dev/dri/renderD128 # For intel hwaccel, needs to be updated for your hardware
  18. volumes:
  19. - /etc/localtime:/etc/localtime:ro
  20. - ./config:/config
  21. - ./media:/media/frigate
  22. - /sys/:/sys/:ro
  23. - type: tmpfs # Optional: 1GB of memory, reduces SSD/SD Card wear
  24. target: /tmp/cache
  25. tmpfs:
  26. size: 1000000000
  27. ports:
  28. - "8971:8971"
  29. - "5000:5000" # Internal unauthenticated access. Expose carefully.
  30. - "8554:8554" # RTSP feeds
  31. - "8555:8555/tcp" # WebRTC over tcp
  32. - "8555:8555/udp" # WebRTC over udp
  33. environment:
  34. FRIGATE_RTSP_PASSWORD: "xxxxxxxxxxxxxxxxxxxxx"
Advertisement
Add Comment
Please, Sign In to add comment