5 Commits

Author SHA1 Message Date
17c4335feb - Add ISL support,
- Use now rx3-docker/base:1.4.0-mga9 image,
- Rebuild for updates.
2026-02-16 08:55:06 +01:00
371c36e18d - Fix ApplName with space support. 2025-12-02 22:40:45 +01:00
472a94caed - Use now rx3-docker/base:1.3.6-mga9 image,
- Rebuild for updates.
2025-11-29 11:32:12 +01:00
b70332a608 - Improve run.sh to allow direct call with appl full path in one argument. 2025-11-06 16:28:11 +01:00
1935ad1b30 - Use now rx3-docker/base:1.3.5-mga9 image,
- Rebuild for updates.
2025-09-19 23:30:32 +02:00
6 changed files with 56 additions and 13 deletions

View File

@@ -9,6 +9,7 @@ ARG IMG_NAME
ARG IMG_NAME_FULL
ARG IMG_VERSION
ARG IMG_MAINTAINER
ARG IMG_URL
LABEL org.rx3.${IMG_NAME}.name=${IMG_NAME_FULL}
LABEL org.rx3.${IMG_NAME}.version=${IMG_VERSION}
@@ -18,16 +19,20 @@ LABEL maintainer=${IMG_MAINTAINER}
ENV DISPLAY=:0
RUN urpmi.update -a \
RUN . /etc/profile.d/rx3.sh && isl_add ${IMG_URL} \
&& urpmi.update -a \
&& urpmi --force xterm lib64jack0 lib64opencl1 pipewire-media-session lib64proxy-webkit hunspell-en lib64xcb-xkb1 lib64xcomposite1 lib64xcursor1 lib64xdamage1 lib64xft-gir2.0 lib64xi6 lib64xinerama1 lib64xkbcommon0 lib64vulkan-loader1 lib64xlib-gir2.0 lib64xrandr2 lib64xmlb2 lib64xslt1 libexif12-common libgxps-tools frozen-bubble glxinfo
#RUN passwd -d root
COPY src/sbin/user_add_exec /usr/local/sbin
VOLUME /home
VOLUME /tmp/.X11-unix/X0
VOLUME /run/user
CMD ["/bin/bash"]
ENTRYPOINT []

View File

@@ -5,13 +5,13 @@ Welcome to RX3-Docker/X11-Pulse docker image!
This is project aims to build a X11 + Pulse docker image able to run any graphic & audio application isolated.
Features:
- Curtently based on rx3-docker/base:1.3.2-mga9 image,
- Curtently based on rx3-docker/base:1.4.0-mga9 image,
- X11 & Pulse base libraries installed,
- Target user & group created on the run,
- Optional output internet routing.
Usage:
./bin/run.sh [-h] [-i] <Application Dir> <Application Exec> [Args...]
./bin/run.sh [-h] [-i] [<Application_Dir> <Application_Exec> | <Application_Exec>] [Args...]

View File

@@ -1,3 +1,32 @@
------------------------------------------------------------------------------------------------------------------------------------
Rx3-Docker/X11-Pulse V 1.2.7 - A. GIBERT - 2026/02/16
------------------------------------------------------------------------------------------------------------------------------------
- Add ISL support,
- Use now rx3-docker/base:1.4.0-mga9 image,
- Rebuild for updates.
------------------------------------------------------------------------------------------------------------------------------------
Rx3-Docker/X11-Pulse V 1.2.6 - A. GIBERT - 2025/11/29
------------------------------------------------------------------------------------------------------------------------------------
- Improve run.sh to allow direct call with appl full path in one argument,
- Use now rx3-docker/base:1.3.6-mga9 image,
- Rebuild for updates.
------------------------------------------------------------------------------------------------------------------------------------
Rx3-Docker/X11-Pulse V 1.2.5 - A. GIBERT - 2025/09/19
------------------------------------------------------------------------------------------------------------------------------------
- Use now rx3-docker/base:1.3.5-mga9 image,
- Rebuild for updates.
------------------------------------------------------------------------------------------------------------------------------------
Rx3-Docker/X11-Pulse V 1.2.4 - A. GIBERT - 2025/04/21
------------------------------------------------------------------------------------------------------------------------------------

View File

@@ -10,7 +10,7 @@ APPL_HOME_DIR="$(dirname "$(dirname "$0")")"
if [[ "$1" == "-h" ]]
then
echo "usage: run.sh [-h] [-i] <Application_Dir> <Application_Exec> [Args...]"
echo "usage: run.sh [-h] [-i] [<Application_Dir> <Application_Exec> | <Application_Exec>] [Args...]"
echo "with -i enabling internet access."
exit 0
@@ -24,11 +24,19 @@ else
export APPL_NETWORK="no-internet"
fi
if [[ -d "$1" ]]
then
export APPL_DIR="$1"
shift
export APPL_NAME="$1"
shift
else
export APPL_DIR="$( dirname "$1")"
export APPL_NAME="./$(basename "$1")"
shift
fi

View File

@@ -20,12 +20,13 @@ services:
IMG_NAME_FULL: ${XP_IMG_NAME_FULL}
IMG_VERSION: ${XP_IMG_VERSION}
IMG_MAINTAINER: ${XP_IMG_MAINTAINER}
IMG_URL: ${XP_IMG_URL}
IMG_FROM_URL: ${XP_IMG_FROM_URL}
restart: unless-stopped
environment:
DISPLAY: ":0"
DISPLAY: "${DISPLAY}"
volumes:
# - home_dir:/home

View File

@@ -20,7 +20,7 @@ ORG_URL_PREFIX="${ORG_REGISTRY}/${ORG_NAME}"
APPL_NAME="x11-pulse"
APPL_NAME_FULL="X11-Pulse Docker Image"
APPL_NAME_SHORT="x11-pulse"
APPL_VERSION="1.2.4"
APPL_VERSION="1.2.7"
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 |
#------------------+----------+--------------------------+--------------------+------------------+-------------------------------+---------------------+--------------------+---------------+------------+--------------+------------+-------+-------+-------+-------+--------------+--------------+
docker_service_add XP x11-pulse ${ORG_URL_PREFIX} - "Rx3-Docker/X11-Pulse" ${APPL_VERSION}-mga9 ${ORG_URL_PREFIX} base 1.3.2-mga9 - - - - - - - -
docker_service_add XP x11-pulse ${ORG_URL_PREFIX} - "Rx3-Docker/X11-Pulse" ${APPL_VERSION}-mga9 ${ORG_URL_PREFIX} base 1.4.0-mga9 - - - - - - - -