Skip to content

Commit df63349

Browse files
committed
update
1 parent 06f429e commit df63349

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
SLIMEVR_VERSION=0.15.0
1+
SLIMEVR_VERSION=0.16.2
22
WEBGUI_PORT=8080

config/vrconfig.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,3 +118,6 @@ overlay:
118118
mirrored: false
119119
visible: false
120120
modelVersion: "14"
121+
ui:
122+
maxFPS: 24
123+

docker-compose.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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

slimevr/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,5 @@ RUN apt-get update && \
1717

1818
VOLUME ["/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+

0 commit comments

Comments
 (0)