File tree Expand file tree Collapse file tree 4 files changed +10
-2
lines changed
Expand file tree Collapse file tree 4 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1- SLIMEVR_VERSION = 0.15.0
1+ SLIMEVR_VERSION = 0.16.2
22WEBGUI_PORT = 8080
Original file line number Diff line number Diff line change @@ -118,3 +118,6 @@ overlay:
118118 mirrored : false
119119 visible : false
120120modelVersion : " 14"
121+ ui :
122+ maxFPS : 24
123+
Original file line number Diff line number Diff line change @@ -13,6 +13,9 @@ services:
1313 - /dev/ttyUSB0:/dev/ttyUSB0 # USB-Serial based on ch34x/pl2303
1414 - /dev/ttyACM0:/dev/ttyACM0 # CDC-ACM (ESP32-S3, nRF52, etc.)
1515 - /dev/hidraw0:/dev/hidraw0 # Dongles HID (opcional)
16+ - /dev/dri:/dev/dri # GPU for WebGL
17+ environment :
18+ - LIBGL_ALWAYS_INDIRECT=0
1619 # ports:
1720 # - "6969:6969/udp" # Tracker data (SlimeVR default UDP port)
1821 # - "21110:21110" # WebSocket VR Bridge for integrations
@@ -25,6 +28,7 @@ services:
2528 # - "4768:4768/udp" # Tracker discovery / legacy LAN detection
2629 group_add :
2730 - dialout
31+ - video
2832 volumes :
2933 - slimevr-config:/root/.config/dev.slimevr.SlimeVR
3034 - slimevr-gui:/gui_mount
Original file line number Diff line number Diff line change @@ -17,4 +17,5 @@ RUN apt-get update && \
1717
1818VOLUME ["/gui_mount" ]
1919
20- CMD cp -r /gui/* /gui_mount && java -jar slimevr.jar run
20+ CMD cp -r /gui/* /gui_mount && java -XX:ActiveProcessorCount=$(nproc) -jar slimevr.jar run
21+
You can’t perform that action at this time.
0 commit comments