Skip to content

[HW Accel Support]: #15403

Dec 8, 2024 · 3 comments · 4 replies
Discussion options

You must be logged in to vote

you need to add count to your docker compose.

version: "3.9"
services:
  frigate: # <----------------------------------------------- RUN FRIGATE
    container_name: frigatenew
    privileged: true # this may not be necessary for all setups
    runtime: nvidia # add this too, but to be honest, I'm not sure if it is required.
    restart: unless-stopped
    image: ghcr.io/blakeblackshear/frigate:stable
    deploy:    # <------------- Nvidia hardware deployment
      resources:
        reservations:
          devices:
            - driver: nvidia
              count: all # missing
              capabilities: [gpu] # gpu is the only flag needed, it allows the rest of the flags anyway.
    shm…

Replies: 3 comments 4 replies

Comment options

NickM-27
Dec 8, 2024
Collaborator Sponsor

You must be logged in to vote
1 reply
@uxandy
Comment options

Comment options

You must be logged in to vote
2 replies
@uxandy
Comment options

@clsferguson
Comment options

Answer selected by uxandy
Comment options

You must be logged in to vote
1 reply
@uxandy
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment