@@ -5,30 +5,19 @@ services:
55 args :
66 SLIMEVR_VERSION : ${SLIMEVR_VERSION}
77 container_name : slimevr
8- network_mode : host
98 restart : unless-stopped
10- privileged : true
11- devices :
12- - /dev/bus/usb:/dev/bus/usb # Mount every USB device
13- - /dev/ttyUSB0:/dev/ttyUSB0 # USB-Serial based on ch34x/pl2303
14- - /dev/ttyACM0:/dev/ttyACM0 # CDC-ACM (ESP32-S3, nRF52, etc.)
15- - /dev/hidraw0:/dev/hidraw0 # Dongles HID (opcional)
16- - /dev/dri:/dev/dri # GPU for WebGL
179 environment :
1810 - LIBGL_ALWAYS_INDIRECT=0
19- # ports:
20- # - "6969:6969/udp" # Tracker data (SlimeVR default UDP port)
21- # - "21110:21110" # WebSocket VR Bridge for integrations
22- # - "8266:8266" # OTA firmware update
23- # - "9000:9000" # OSC output (shared by VRC and router)
24- # - "9001:9001" # VRC OSC input (VRChat tracking)
25- # - "9002:9002" # OSC Router input (for rerouting OSC)
26- # - "39539:39539" # VMC output (used by VSeeFace, etc.)
27- # - "39540:39540" # VMC input
28- # - "4768:4768/udp" # Tracker discovery / legacy LAN detection
29- group_add :
30- - dialout
31- - video
11+ ports :
12+ - " 6969:6969/udp" # Tracker data (SlimeVR default UDP port)
13+ - " 21110:21110" # WebSocket VR Bridge for integrations
14+ - " 8266:8266" # OTA firmware update
15+ - " 9000:9000" # OSC output (shared by VRC and router)
16+ - " 9001:9001" # VRC OSC input (VRChat tracking)
17+ - " 9002:9002" # OSC Router input (for rerouting OSC)
18+ - " 39539:39539" # VMC output (used by VSeeFace, etc.)
19+ - " 39540:39540" # VMC input
20+ - " 4768:4768/udp" # Tracker discovery / legacy LAN detection
3221 volumes :
3322 - slimevr-config:/root/.config/dev.slimevr.SlimeVR
3423 - slimevr-gui:/gui_mount
@@ -37,11 +26,10 @@ services:
3726 build : ./nginx
3827 container_name : slimevr_gui
3928 restart : unless-stopped
40- network_mode : host
4129 environment :
4230 WEBGUI_PORT : ${WEBGUI_PORT}
43- # ports:
44- # - "${WEBGUI_PORT}:${WEBGUI_PORT}"
31+ ports :
32+ - " ${WEBGUI_PORT}:${WEBGUI_PORT}"
4533 volumes :
4634 - slimevr-gui:/usr/share/nginx/html:ro
4735
0 commit comments