Once all the GPU and Docker prerequisites are in place, installing frigate-nve is easy: a) build a yaml file, b) docker compose the file. In the LXC container, create a frigate directory and move into it: mkdir frigate cd frigate In that directory, here is the content of my docker-compose-yaml file: services: frigate: container_name: frigate #privileged: true # this may not be necessary for all setups restart: unless-stopped stop_grace_period: 30s # allow enough time to shut down the various services image: ghcr.io/blakeblackshear/frigate:stable shm_size: "1512mb" # updated for my camera list based upon error messages in the log # devices: # - /dev/dri/renderD128:/dev/dri/renderD128 # AMD / Intel GPU, needs to be updated for your hardware deploy: resources: reservations: devices: - driver: nvidia #device_ids: ['0'] # this is only needed when using multiple GPUs count: 1 # number of GPUs capabilities: [gpu] volumes: - /etc/localtime:/etc/localtime:ro - /root/frigate/config:/config -…
No comments yet. Log in to reply on the Fediverse. Comments will appear here.