From 294de0fedd35c7d32ba8bd1ed794c29ee1612660 Mon Sep 17 00:00:00 2001 From: Udo Waechter Date: Mon, 10 Nov 2025 12:12:27 +0100 Subject: [PATCH] adding more threads --- lmstudio-docker | 2 +- lmstudio-open-webui.yaml | 6 ++++++ xfvb-test/Dockerfile | 33 +++++++++++++++++++++++++++++++++ xfvb-test/docker-entrypoint.sh | 13 +++++++++++++ 4 files changed, 53 insertions(+), 1 deletion(-) create mode 100644 xfvb-test/Dockerfile create mode 100644 xfvb-test/docker-entrypoint.sh diff --git a/lmstudio-docker b/lmstudio-docker index c017384..254f71b 160000 --- a/lmstudio-docker +++ b/lmstudio-docker @@ -1 +1 @@ -Subproject commit c017384ad1e57b6b35fa5f04afa2b7b4a70d9949 +Subproject commit 254f71bf4772bdeafcb9d407fc85f8905bfde41f diff --git a/lmstudio-open-webui.yaml b/lmstudio-open-webui.yaml index 77b3314..b609e1f 100644 --- a/lmstudio-open-webui.yaml +++ b/lmstudio-open-webui.yaml @@ -22,6 +22,8 @@ spec: volumeMounts: - name: lmstudio-data mountPath: /root/.lmstudio + - name: lmstudio-config + mountPath: "/root/.config/LM Studio" - name: dev-dri mountPath: /dev/dri - name: dev-kfd @@ -56,6 +58,10 @@ spec: hostPath: path: /home/do/.lmstudio type: Directory + - name: lmstudio-config + hostPath: + path: "/home/do/.config/LM Studio" + type: Directory - name: dev-dri hostPath: path: /dev/dri diff --git a/xfvb-test/Dockerfile b/xfvb-test/Dockerfile new file mode 100644 index 0000000..63e8f34 --- /dev/null +++ b/xfvb-test/Dockerfile @@ -0,0 +1,33 @@ + +ARG baseimage=debian:testing-slim + +FROM ${baseimage} AS baseimage +ENV LANG C.UTF-8 +ENV LC_ALL C.UTF-8 + + +ENV TZ="Europe/Berlin" + +ARG DEBIAN_FRONTEND=noninteractive +# Build arguments +ARG ARG_UID=1000 +ARG ARG_GID=1000 + +RUN <