Luxonis-Lukasz I can see my device when perform lsusb:
[Logs] [2/21/2022, 4:16:35 PM] [myoakd] Bus 001 Device 127: ID 03e7:2485 Movidius Ltd. Movidius MyriadX
after removing lines you suggested:
FROM luxonis/depthai-library:v2.14.0.0
ENV DEBIAN_FRONTEND=noninteractive
RUN apt update && apt install -y ffmpeg libsm6 libxext6 libgl1-mesa-glx
WORKDIR /depthai-python/examples/
RUN python3 install_requirements.py
COPY oakd-test.py .
CMD python3 oakd-test.py
so the effect is simply the same 🙁
[Logs] [2/21/2022, 4:18:50 PM] [myoakd] Traceback (most recent call last):
[Logs] [2/21/2022, 4:18:50 PM] [myoakd] File "/depthai-python/examples/oakd-test.py", line 70, in <module>
[Logs] [2/21/2022, 4:18:50 PM] [myoakd] with dai.Device(pipeline) as device:
[Logs] [2/21/2022, 4:18:50 PM] [myoakd] RuntimeError: Failed to find device after booting, error message: X_LINK_DEVICE_NOT_FOUND
here you have docker-compose.yaml body:
version: "2.0"
services:
myoakd:
build:
context: .
dockerfile: Dockerfile-luxonis
privileged: true
network_mode: host
environment:
- DISPLAY=$DISPLAY
devices:
- "/dev/bus/usb:/dev/bus/usb"
- "/tmp/.X11-unix:/tmp/.X11-unix"
labels:
io.balena.features.dbus: '1'
io.balena.features.balena-socket: '1'
io.balena.features.kernel-modules: '1'