-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcompose.override.example.yaml
More file actions
22 lines (21 loc) · 950 Bytes
/
Copy pathcompose.override.example.yaml
File metadata and controls
22 lines (21 loc) · 950 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copy to compose.override.yaml and adjust for your host.
# Docker Compose merges this with compose.yaml automatically.
services:
nwsalertdashboard:
# RTL-SDR dongle passthrough (confirm it's present: lsusb | grep -i rtl).
# Linux hosts only: a Windows host has no /dev/bus/usb to bind, and needs
# the dongle bridged into WSL2 with usbipd-win first. See README > Windows.
# Bind the whole USB tree + allow all USB char devices (major 189) instead
# of pinning one /dev/bus/usb/<bus>/<dev> node: libusb opens the real
# sysfs-derived path, which changes on replug/reboot, so a fixed node (or a
# udev symlink to it) breaks on re-enumeration. This survives renumbering.
volumes:
- /dev/bus/usb:/dev/bus/usb
device_cgroup_rules:
- 'c 189:* rmw'
# Attach to an existing reverse-proxy network instead of the default:
# networks:
# - proxynet
# networks:
# proxynet:
# external: true