Advertisement
kingnappa

Compose

Jul 17th, 2025 (edited)
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. services:
  2. frigate:
  3. image: ghcr.io/blakeblackshear/frigate:0.15.1
  4. container_name: Frigate
  5. hostname: frigate
  6. restart: on-failure:5
  7. security_opt:
  8. - apparmor=unconfined
  9. - systempaths=unconfined
  10. shm_size: 1024mb
  11. environment:
  12. TZ: Europe/Rome
  13. FRIGATE_RTSP_PASSWORD: 12345678
  14. volumes:
  15. - /etc/localtime:/etc/localtime:ro
  16. - /volume1/docker/frigate/config:/config:rw
  17. - /volume1/docker/frigate/media:/media/frigate:rw
  18. - type: tmpfs
  19. target: /tmp/cache
  20. tmpfs:
  21. size: 1000000000
  22. devices:
  23. - /dev/dri/renderD128:/dev/dri/renderD128 # for NAS with an Intel Hardware Accelerator
  24. ports:
  25. - 5563:5000 #Web UI Interface Port
  26. - 8554:8554 # RTSP feeds
  27. - 8555:8555/tcp # WebRTC over tcp
  28. - 8555:8555/udp # WebRTC over udp
  29. cap_add:
  30. - CAP_PERFMON
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement