- Improve run.sh to allow direct call with appl full path in one argument,
- Now use rx3-docker/x11-pulse:1.2.6-mga9 image, - Rebuild for updates.
This commit is contained in:
parent
add152596b
commit
18a1aabd90
@ -5,11 +5,11 @@ 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.5-mga9 image,
|
- Curtently based on rx3-docker/x11-pulse:1.2.6-mga9 image,
|
||||||
- Support by defaul volatile Wine dir (/tmp/wine) or non volatile (~/.wine).
|
- Support by defaul volatile Wine dir (/tmp/wine) or non volatile (~/.wine).
|
||||||
|
|
||||||
Usage:
|
Usage:
|
||||||
./bin/run.sh [-h] [-i] [-n] <Application Dir> <Application Exec> [Args...]
|
./bin/run.sh [-h] [-i] [-n] [<Application_Dir> <Application_Exec> | <Application_Exec>] [Args...]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -1,3 +1,13 @@
|
|||||||
|
------------------------------------------------------------------------------------------------------------------------------------
|
||||||
|
Rx3-Docker/Wine V 1.0.4 - A. GIBERT - 2025/11/29
|
||||||
|
------------------------------------------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
- Improve run.sh to allow direct call with appl full path in one argument,
|
||||||
|
- Now use rx3-docker/x11-pulse:1.2.6-mga9 image,
|
||||||
|
- Rebuild for updates.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
------------------------------------------------------------------------------------------------------------------------------------
|
------------------------------------------------------------------------------------------------------------------------------------
|
||||||
Rx3-Docker/Wine V 1.0.3 - A. GIBERT - 2025/09/19
|
Rx3-Docker/Wine V 1.0.3 - A. GIBERT - 2025/09/19
|
||||||
------------------------------------------------------------------------------------------------------------------------------------
|
------------------------------------------------------------------------------------------------------------------------------------
|
||||||
|
|||||||
17
bin/run.sh
17
bin/run.sh
@ -16,7 +16,7 @@ while [[ "$1" == "-h" || "$1" == "-i" || "$1" == "-n" ]]
|
|||||||
do
|
do
|
||||||
if [[ "$1" == "-h" ]]
|
if [[ "$1" == "-h" ]]
|
||||||
then
|
then
|
||||||
echo "usage: run.sh [-h] [-n] [-i] <Application_Dir> <Application_Exec> [Args...]"
|
echo "usage: run.sh [-h] [-n] [-i] [<Application_Dir> <Application_Exec> | <Application_Exec>] [Args...]"
|
||||||
echo "with -i enabling internet access,"
|
echo "with -i enabling internet access,"
|
||||||
echo "with -n enabling non volatile wine directory."
|
echo "with -n enabling non volatile wine directory."
|
||||||
|
|
||||||
@ -37,11 +37,18 @@ do
|
|||||||
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
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
4
env.dist
4
env.dist
@ -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.3"
|
APPL_VERSION="1.0.4"
|
||||||
|
|
||||||
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.5-mga9 - - - - - - - -
|
docker_service_add WN wine ${ORG_URL_PREFIX} - "Rx3-Docker/Wine" ${APPL_VERSION}-mga9 ${ORG_URL_PREFIX} x11-pulse 1.2.6-mga9 - - - - - - - -
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user