denperss

composefile

Sep 30th, 2025 (edited)
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.67 KB | None | 0 0
  1. version: "3.9"
  2. services:
  3.   frigate:
  4.     privileged: true
  5.     container_name: frigate
  6.     restart: unless-stopped
  7.     stop_grace_period: 30s
  8.     image: ghcr.io/blakeblackshear/frigate:stable
  9.     shm_size: "4g"   # 6x 4K/5MP streams (~512MB each)  ^f^r rounded up
  10.    # devices:
  11.      # - /dev/dri:/dev/dri   # Intel GPU passthrough for VAAPI
  12.      # - /dev/dri/renderD128:/dev/dri/renderD128
  13.     volumes:
  14.      - ./config:/config
  15.       - ./storage:/media/frigate
  16.       - type: tmpfs # Optional: 1GB of memory, reduces SSD/SD Card wear
  17.         target: /tmp/cache
  18.         tmpfs:
  19.           size: 1000000000
  20.     ports:
  21.      - "8971:8971"
  22.       - "8554:8554" # RTSP feeds
Advertisement
Add Comment
Please, Sign In to add comment