I am trying to pass the digirig lite through a docker container on the Raspberry Pi Trixie OS on graywolf.
I have added the following 2 command lines to the docker-configure.yml device:
- /dev/hidraw0:/dev/hidraw0
- /dev/snd:/dev/snd
I was successful in passing my USB GPS device and it is reading on Graywolf, but the digirig lite, no luck. I have been fooling around for in for a few days.
This is the complete Docker-compose.yml file I am running:
services:
graywolf:
image: Package graywolf ยท GitHub
container_name: graywolf
restart: unless-stopped
privileged: true
devices:
- /dev/hidraw0:/dev/hidraw0
- /dev/snd:/dev/snd
- /dev/ttyACM0:/dev/ttyACM0
ports:
- "8080:8080/tcp"
volumes:
- graywolf-data:/data
command: ["-config", "/data/graywolf.db", "-http", "0.0.0.0:8080"]
Any help is appriacted
Thanks