diff --git a/docker/Dockerfile b/docker/Dockerfile index 2964dc080..d765dd029 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -94,7 +94,9 @@ RUN --mount=type=bind,from=wheels,source=/wheels,target=/wheels \ fi \ # arch specific packages && if [ "${TARGETARCH}" = "amd64" ]; then \ - apt-get -qq install --no-install-recommends --no-install-suggests -y \ + echo 'deb http://deb.debian.org/debian testing main non-free' >> /etc/apt/sources.list.d/deb.list \ + && apt-get -qq update \ + && apt-get -qq install --no-install-recommends --no-install-suggests -y \ mesa-va-drivers libva-drm2 intel-media-va-driver-non-free i965-va-driver libmfx1; \ fi \ && if [ "${TARGETARCH}" = "arm64" ]; then \ diff --git a/docs/docs/configuration/hardware_acceleration.md b/docs/docs/configuration/hardware_acceleration.md index 54be32c1c..67df7ca60 100644 --- a/docs/docs/configuration/hardware_acceleration.md +++ b/docs/docs/configuration/hardware_acceleration.md @@ -58,6 +58,7 @@ services: devices: - driver: nvidia device_ids: ['0'] # this is only needed when using multiple GPUs + count: 1 # number of GPUs capabilities: [gpu] ```