2 Commits

Author SHA1 Message Date
1935ad1b30 - Use now rx3-docker/base:1.3.5-mga9 image,
- Rebuild for updates.
2025-09-19 23:30:32 +02:00
8fbec958ed - Fix Application Dir spaces support. 2025-04-21 12:26:02 +02:00
6 changed files with 23 additions and 6 deletions

View File

@@ -5,7 +5,7 @@ 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. This is project aims to build a X11 + Pulse docker image able to run any graphic & audio application isolated.
Features: Features:
- Curtently based on rx3-docker/base:1.3.2-mga9 image, - Curtently based on rx3-docker/base:1.3.5-mga9 image,
- X11 & Pulse base libraries installed, - X11 & Pulse base libraries installed,
- Target user & group created on the run, - Target user & group created on the run,
- Optional output internet routing. - Optional output internet routing.

View File

@@ -1,3 +1,20 @@
------------------------------------------------------------------------------------------------------------------------------------
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
------------------------------------------------------------------------------------------------------------------------------------
- Fix Application Dir spaces support.
------------------------------------------------------------------------------------------------------------------------------------ ------------------------------------------------------------------------------------------------------------------------------------
Rx3-Docker/X11-Pulse V 1.2.3 - A. GIBERT - 2025/04/14 Rx3-Docker/X11-Pulse V 1.2.3 - A. GIBERT - 2025/04/14
------------------------------------------------------------------------------------------------------------------------------------ ------------------------------------------------------------------------------------------------------------------------------------

View File

@@ -32,7 +32,7 @@ shift
APPL_DIR=$(realpath ${APPL_DIR}) APPL_DIR=$(realpath "${APPL_DIR}")
export USER_ID=$(id -u) export USER_ID=$(id -u)
export GROUP_ID=$(id -g) export GROUP_ID=$(id -g)

View File

@@ -25,7 +25,7 @@ services:
restart: unless-stopped restart: unless-stopped
environment: environment:
DISPLAY: ":0" DISPLAY: "${DISPLAY}"
volumes: volumes:
# - home_dir:/home # - home_dir:/home

View File

@@ -20,7 +20,7 @@ ORG_URL_PREFIX="${ORG_REGISTRY}/${ORG_NAME}"
APPL_NAME="x11-pulse" APPL_NAME="x11-pulse"
APPL_NAME_FULL="X11-Pulse Docker Image" APPL_NAME_FULL="X11-Pulse Docker Image"
APPL_NAME_SHORT="x11-pulse" APPL_NAME_SHORT="x11-pulse"
APPL_VERSION="1.2.3" APPL_VERSION="1.2.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 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.3.5-mga9 - - - - - - - -

View File

@@ -2,7 +2,7 @@
for arg in User_Id User_Name Home_Dir Group_Id Group_Name Appl_Dir for arg in User_Id User_Name Home_Dir Group_Id Group_Name Appl_Dir
do do
declare "$arg"=$1 declare "$arg"="$1"
shift shift
done done