3 Commits

Author SHA1 Message Date
e310eb3ac2 - Add ISL support,
- Use now rx3-docker/x11-pulse:1.2.7-mga9 image,
- Rebuild for updates.
2026-02-16 08:55:33 +01:00
e94e601e85 - Improve run.sh to allow direct call with appl full path in one argument,
- Now support 580.105.08 driver,
- Now use rx3-docker/x11-pulse:1.2.6-mga9 image,
- Rebuild for updates.
2025-11-29 11:42:13 +01:00
d6fcb35c68 - Now support 580.82.07 driver,
- Now use rx3-docker/x11-pulse:1.2.5-mga9 image,
- Rebuild for updates.
2025-09-19 23:36:18 +02:00
6 changed files with 52 additions and 11 deletions

View File

@@ -9,6 +9,7 @@ ARG IMG_NAME
ARG IMG_NAME_FULL ARG IMG_NAME_FULL
ARG IMG_VERSION ARG IMG_VERSION
ARG IMG_MAINTAINER ARG IMG_MAINTAINER
ARG IMG_URL
LABEL org.rx3.${IMG_NAME}.name=${IMG_NAME_FULL} LABEL org.rx3.${IMG_NAME}.name=${IMG_NAME_FULL}
LABEL org.rx3.${IMG_NAME}.version=${IMG_VERSION} LABEL org.rx3.${IMG_NAME}.version=${IMG_VERSION}
@@ -18,7 +19,8 @@ LABEL maintainer=${IMG_MAINTAINER}
ENV DISPLAY=:0 ENV DISPLAY=:0
RUN urpmi.update -a \ RUN . /etc/profile.d/rx3.sh && isl_add ${IMG_URL} \
&& urpmi.update -a \
&& urpmi --force --no-install dkms-nvidia-current kernel-desktop-devel x11-driver-video-nvidia-current \ && urpmi --force --no-install dkms-nvidia-current kernel-desktop-devel x11-driver-video-nvidia-current \
&& rpm -Uvh --nodeps /var/cache/urpmi/rpms/x11-driver-video-nvidia-current*.rpm \ && rpm -Uvh --nodeps /var/cache/urpmi/rpms/x11-driver-video-nvidia-current*.rpm \
&& \rm /var/cache/urpmi/rpms/* && \rm /var/cache/urpmi/rpms/*

View File

@@ -5,13 +5,13 @@ Welcome to RX3-Docker/X11-Pulse-NVidia docker image!
This is project aims to build a X11 + Pulse + NVidia docker image able to run any graphic & audio application isolated and hardware optimized. This is project aims to build a X11 + Pulse + NVidia docker image able to run any graphic & audio application isolated and hardware optimized.
Features: Features:
- Curtently based on rx3-docker/x11-pulse:1.2.4-mga9 image, - Curtently based on rx3-docker/x11-pulse:1.2.7-mga9 image,
- NVidia libs installed (550.163.01), - NVidia libs installed (580.105.08),
- Require nvidia-container-toolkit installed on the host, - Require nvidia-container-toolkit installed on the host,
- Add '-d' option to disable sound. - Add '-d' option to disable sound.
Usage: Usage:
./bin/run.sh [-h] [-i] <Application Dir> <Application Exec> [Args...] ./bin/run.sh [-h] [-d] [-i] [<Application_Dir> <Application_Exec> | <Application_Exec>] [Args...]

View File

@@ -1,3 +1,34 @@
------------------------------------------------------------------------------------------------------------------------------------
Rx3-Docker/X11-Pulse-NVidia V 1.0.5 - A. GIBERT - 2026/02/16
------------------------------------------------------------------------------------------------------------------------------------
- Add ISL support,
- Use now rx3-docker/x11-pulse:1.2.7-mga9 image,
- Rebuild for updates.
------------------------------------------------------------------------------------------------------------------------------------
Rx3-Docker/X11-Pulse-NVidia V 1.0.4 - A. GIBERT - 2025/11/29
------------------------------------------------------------------------------------------------------------------------------------
- Improve run.sh to allow direct call with appl full path in one argument,
- Now support 580.105.08 driver,
- Now use rx3-docker/x11-pulse:1.2.6-mga9 image,
- Rebuild for updates.
------------------------------------------------------------------------------------------------------------------------------------
Rx3-Docker/X11-Pulse-NVidia V 1.0.3 - A. GIBERT - 2025/09/19
------------------------------------------------------------------------------------------------------------------------------------
- Now support 580.82.07 driver,
- Now use rx3-docker/x11-pulse:1.2.5-mga9 image,
- Rebuild for updates.
------------------------------------------------------------------------------------------------------------------------------------ ------------------------------------------------------------------------------------------------------------------------------------
Rx3-Docker/X11-Pulse-NVidia V 1.0.2 - A. GIBERT - 2025/05/06 Rx3-Docker/X11-Pulse-NVidia V 1.0.2 - A. GIBERT - 2025/05/06
------------------------------------------------------------------------------------------------------------------------------------ ------------------------------------------------------------------------------------------------------------------------------------

View File

@@ -15,7 +15,7 @@ while [[ "$1" == "-h" || "$1" == "-d" || "$1" == "-i" ]]
do do
if [[ "$1" == "-h" ]] if [[ "$1" == "-h" ]]
then then
echo "usage: run.sh [-h] [-d] [-i] <Application_Dir> <Application_Exec> [Args...]" echo "usage: run.sh [-h] [-d] [-i] [<Application_Dir> <Application_Exec> | <Application_Exec>] [Args...]"
echo "with -d disabling sound," echo "with -d disabling sound,"
echo "with -i enabling internet access." echo "with -i enabling internet access."
@@ -35,11 +35,18 @@ do
fi fi
done done
export APPL_DIR="$1" if [[ -d "$1" ]]
shift then
export APPL_DIR="$1"
shift
export APPL_NAME="$1" export APPL_NAME="$1"
shift shift
else
export APPL_DIR="$( dirname $1)"
export APPL_NAME="./$(basename $1)"
shift
fi

View File

@@ -20,6 +20,7 @@ services:
IMG_NAME_FULL: ${XPN_IMG_NAME_FULL} IMG_NAME_FULL: ${XPN_IMG_NAME_FULL}
IMG_VERSION: ${XPN_IMG_VERSION} IMG_VERSION: ${XPN_IMG_VERSION}
IMG_MAINTAINER: ${XPN_IMG_MAINTAINER} IMG_MAINTAINER: ${XPN_IMG_MAINTAINER}
IMG_URL: ${XPN_IMG_URL}
IMG_FROM_URL: ${XPN_IMG_FROM_URL} IMG_FROM_URL: ${XPN_IMG_FROM_URL}
restart: unless-stopped restart: unless-stopped

View File

@@ -20,7 +20,7 @@ ORG_URL_PREFIX="${ORG_REGISTRY}/${ORG_NAME}"
APPL_NAME="x11-pulse-nvidia" APPL_NAME="x11-pulse-nvidia"
APPL_NAME_FULL="X11-Pulse-NVidia Docker Image" APPL_NAME_FULL="X11-Pulse-NVidia Docker Image"
APPL_NAME_SHORT="x11-pls-nv" APPL_NAME_SHORT="x11-pls-nv"
APPL_VERSION="1.0.2" APPL_VERSION="1.0.5"
HOST_NAME_PREFIX=${APPL_NAME_SHORT}${APPL_SUFFIX} HOST_NAME_PREFIX=${APPL_NAME_SHORT}${APPL_SUFFIX}
@@ -46,7 +46,7 @@ DOCKER_TOOLS_VOLUME=SINGLE
# | Prefix | Name | URL Prefix | Name | Name Full | Version | URL Prefix | Name | Version | Name | Version | Ext | Int | Ext | Int | Name / Id | Name / Id | # | Prefix | Name | URL Prefix | Name | Name Full | Version | URL Prefix | Name | Version | Name | Version | Ext | Int | Ext | Int | Name / Id | Name / Id |
#------------------+----------+--------------------------+--------------------+------------------+-------------------------------+---------------------+--------------------+---------------+------------+--------------+------------+-------+-------+-------+-------+--------------+--------------+ #------------------+----------+--------------------------+--------------------+------------------+-------------------------------+---------------------+--------------------+---------------+------------+--------------+------------+-------+-------+-------+-------+--------------+--------------+
docker_service_add XPN x11-pulse-nvidia ${ORG_URL_PREFIX} - "Rx3-Docker/X11-Pulse-NVidia" ${APPL_VERSION}-mga9 ${ORG_URL_PREFIX} x11-pulse 1.2.4-mga9 - - - - - - - - docker_service_add XPN x11-pulse-nvidia ${ORG_URL_PREFIX} - "Rx3-Docker/X11-Pulse-NVidia" ${APPL_VERSION}-mga9 ${ORG_URL_PREFIX} x11-pulse 1.2.7-mga9 - - - - - - - -