- Now use rx3-docker/x11-pulse:1.2.3-mga9 image,

- Add absolute & relative command path support,
- Add spaces support in Application Dir & Command.
This commit is contained in:
Arnaud G. GIBERT 2025-04-14 14:24:46 +02:00
parent b997d4031c
commit bd61472ab2
4 changed files with 18 additions and 6 deletions

View File

@ -5,7 +5,7 @@ Welcome to RX3-Docker/Wine docker image!
This is project aims to build a Wine + X11 + Pulse docker image able to run any windows graphic & audio application isolated. This is project aims to build a Wine + X11 + Pulse docker image able to run any windows graphic & audio application isolated.
Features: Features:
- Curtently based on rx3-docker/x11-pulse:1.2.2-mga9 image. - Curtently based on rx3-docker/x11-pulse:1.2.3-mga9 image.
Usage: Usage:

View File

@ -1,6 +1,16 @@
------------------------------------------------------------------------------------------------------------------------------------
Rx3-Docker/Wine V 1.0.1 - A. GIBERT - 2025/04/14
------------------------------------------------------------------------------------------------------------------------------------
- Now use rx3-docker/x11-pulse:1.2.3-mga9 image,
- Add absolute & relative command path support,
- Add spaces support in Application Dir & Command.
------------------------------------------------------------------------------------------------------------------------------------ ------------------------------------------------------------------------------------------------------------------------------------
Rx3-Docker/Wine V 1.0.0 - A. GIBERT - 2025/04/13 Rx3-Docker/Wine V 1.0.0 - A. GIBERT - 2025/04/13
------------------------------------------------------------------------------------------------------------------------------------ ------------------------------------------------------------------------------------------------------------------------------------
- Initial relase, - Initial release,
- Based on rx3-docker/x11-pulse:1.2.2-mga9 image. - Based on rx3-docker/x11-pulse:1.2.2-mga9 image.

View File

@ -1,4 +1,4 @@
#!/bin/bash -x #!/bin/bash
set -o errexit set -o errexit
@ -32,6 +32,8 @@ shift
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)
export GROUP_NAME=$(id -gn) export GROUP_NAME=$(id -gn)
@ -41,6 +43,6 @@ cd "${APPL_HOME_DIR}"
sbin/docker_mk_env sbin/docker_mk_env
docker compose run --rm wine /usr/local/sbin/user_add_exec ${USER_ID} ${USER} ${HOME} ${GROUP_ID} ${GROUP_NAME} ${APPL_DIR}/${APPL_NAME} $* docker compose run --rm wine /usr/local/sbin/user_add_exec ${USER_ID} ${USER} ${HOME} ${GROUP_ID} ${GROUP_NAME} "${APPL_DIR}" "${APPL_NAME}" "$@"
docker compose down docker compose down

View File

@ -20,7 +20,7 @@ ORG_URL_PREFIX="${ORG_REGISTRY}/${ORG_NAME}"
APPL_NAME="wine" APPL_NAME="wine"
APPL_NAME_FULL="Wine Docker Image" APPL_NAME_FULL="Wine Docker Image"
APPL_NAME_SHORT="wine" APPL_NAME_SHORT="wine"
APPL_VERSION="1.0.0" APPL_VERSION="1.0.1"
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 WN wine ${ORG_URL_PREFIX} - "Rx3-Docker/Wine" ${APPL_VERSION}-mga9 ${ORG_URL_PREFIX} x11-pulse 1.2.2-mga9 - - - - - - - - docker_service_add WN wine ${ORG_URL_PREFIX} - "Rx3-Docker/Wine" ${APPL_VERSION}-mga9 ${ORG_URL_PREFIX} x11-pulse 1.2.3-mga9 - - - - - - - -