Skip to content

Commit

Permalink
docker: dont pass usb through by default
Browse files Browse the repository at this point in the history
  • Loading branch information
koush committed Aug 2, 2023
1 parent 62c4a8b commit 7c66826
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions install/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,17 +67,25 @@ services:

# Default volume for the Scrypted database. Typically should not be changed.
- ~/.scrypted/volume:/server/volume
devices:
devices: [
# uncomment the common systems devices to pass
# them through to docker.

# all usb devices, such as coral tpu
- /dev/bus/usb:/dev/bus/usb
# "/dev/bus/usb:/dev/bus/usb",

# hardware accelerated video decoding, opencl, etc.
# - /dev/dri:/dev/dri
# "/dev/dri:/dev/dri",

# uncomment below as necessary.
# zwave usb serial device
# - /dev/ttyACM0:/dev/ttyACM0

# "/dev/ttyACM0:/dev/ttyACM0",

# coral PCI devices
# - /dev/apex_0:/dev/apex_0
# - /dev/apex_1:/dev/apex_1
# "/dev/apex_0:/dev/apex_0",
# "/dev/apex_1:/dev/apex_1",
]

container_name: scrypted
restart: unless-stopped
Expand Down

0 comments on commit 7c66826

Please sign in to comment.