Advertisement
Guest User

Untitled

a guest
Apr 28th, 2024
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. version: "3.9"
  2.  
  3. services:
  4. frigate:
  5. container_name: frigate
  6. privileged: true
  7. restart: unless-stopped
  8. image: ghcr.io/blakeblackshear/frigate:stable
  9. cap_add:
  10. - CAP_PERFMON
  11. shm_size: "160mb"
  12. devices:
  13. - /dev/dri/renderD128:/dev/dri/renderD128
  14. volumes:
  15. - /etc/localtime:/etc/localtime:ro
  16. - ./config:/config
  17. - ./storage:/media/frigate
  18. - type: tmpfs
  19. target: /tmp/cache
  20. tmpfs:
  21. size: 1000000000
  22. ports:
  23. - "5000:5000"
  24. - "8558:8554"
  25. - "8556:8555/tcp"
  26. - "8557:8555/udp"
  27. environment:
  28. FRIGATE_RTSP_PASSWORD: "password"
  29.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement