From a0b984b8044271409e56ab090eb259641dca5c90 Mon Sep 17 00:00:00 2001 From: El Date: Tue, 25 Nov 2025 21:52:55 +0000 Subject: [PATCH] VNC-151 Update container run command to include video/render devices and SSH port mapping --- BUILDING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BUILDING.md b/BUILDING.md index 127c52b..b99299a 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -6,7 +6,7 @@ git submodule init git submodule update --remote --merge sudo docker build -t kasmvnc:dev -f builder/dockerfile.ubuntu_jammy.dev . -sudo docker run -it --rm -v ./:/src -p 6901:6901 -p 8443:8443 --name kasmvnc_dev kasmvnc:dev +sudo docker run -it --rm -v ./:/src -p 2222:22 -p 6901:6901 -p 8443:8443 --device=/dev/dri/card0 --device=/dev/dri/renderD128 --group-add video --group-add render --name kasmvnc_dev kasmvnc:dev ``` **The above assumes you are UID 1000 on the host as the container UID is 1000.**