Compare commits

..

No commits in common. "master" and "x11-pulse-mga9-1.1.3" have entirely different histories.

6 changed files with 9 additions and 40 deletions

View File

@ -18,7 +18,7 @@ IMG_URL_PREFIX="${IMG_REGISTRY}/${IMG_ORG}"
IMG_NAME="x11-pulse-mga9"
IMG_FULL_NAME="Rx3 X11 Pulse Mageia-9 Docker Image"
IMG_VERSION="1.1.5"
IMG_VERSION="1.1.3"
IMG_URL="${IMG_URL_PREFIX}/${IMG_NAME}:${IMG_VERSION}"
IMG_MAINTAINER='"Arnaud G. GIBERT" <arnaud@rx3.net>'

View File

@ -1,7 +1,7 @@
# Rx3 X11 Pulse Mageia-9 Docker Image
#-------------------------------------------------------------------------------
FROM docker.xor.rx3:5000/rx3/base-mga9:1.2.6
FROM docker.xor.rx3:5000/rx3/base-mga9:1.2.3
ARG IMG_NAME
ARG IMG_FULL_NAME

View File

@ -5,7 +5,7 @@ Welcome to RX3/X11-Pulse-Mga9 docker image!
This is project aims to build a X11 + Pulse + Mageia-9 docker image able to run any graphic & audio application isolated.
Features:
- Curtently based on base-mga9:1.2.4 image,
- Curtently based on base-mga9:1.2.3 image,
- X11 & Pulse base libraries installed,
- Target user & group created on the run,
- Optional output internet routing.

View File

@ -1,27 +1,8 @@
------------------------------------------------------------------------------------------------------------------------------------
Rx3/X11-Pulse-Mga9 V 1.1.5 - A. GIBERT - 2024/10/07
------------------------------------------------------------------------------------------------------------------------------------
- Update to rx3/base-mga9:1.2.6 image,
- Variabilization of external server ports in env & compose file,
- Now use docker_tools for .env building.
------------------------------------------------------------------------------------------------------------------------------------
Rx3/X11-Pulse-Mga9 V 1.1.4 - A. GIBERT - 2024/08/28
------------------------------------------------------------------------------------------------------------------------------------
- Update to rx3/base-mga9:1.2.4 image.
------------------------------------------------------------------------------------------------------------------------------------
Rx3/X11-Pulse-Mga9 V 1.1.3 - A. GIBERT - 2024/08/27
------------------------------------------------------------------------------------------------------------------------------------
- Update to rx3/base-mga9:1.2.3 image.
- Update to base-mga9:1.2.3 image.
@ -29,7 +10,7 @@ Rx3/X11-Pulse-Mga9 V 1.1.3 - A. GIBERT - 2024/08/27
Rx3/X11-Pulse-Mga9 V 1.1.2 - A. GIBERT - 2024/08/25
------------------------------------------------------------------------------------------------------------------------------------
- Update to rx3/base-mga9:1.2.1 image.
- Update to base-mga9:1.2.1 image.
@ -55,6 +36,6 @@ Rx3/X11-Pulse-Mga9 V 1.0.0 - A. GIBERT - 2024/08/23
------------------------------------------------------------------------------------------------------------------------------------
- Initial release,
- Based on rx3/base-mga9:1.2.0 image,
- Based on base-mga9:1.2.0 image,
- X11 & Pulse ready,
- user_add_exec installed.

View File

@ -20,7 +20,7 @@ services:
restart: unless-stopped
environment:
DISPLAY: ":0"
- DISPLAY=:0
volumes:
- home_dir:/home
@ -31,8 +31,8 @@ services:
source: /run/user/${USER_ID}/pulse
target: /run/user/${USER_ID}/pulse
- type: bind
source: "${APPL_DIR}"
target: "${APPL_DIR}"
source: ${APPL_DIR}
target: ${APPL_DIR}
networks:
- ${APPL_NETWORK}

12
run.sh
View File

@ -1,13 +1,5 @@
#!/bin/bash
set -o errexit
APPL_HOME_DIR="$(dirname "$(dirname "$0")")"
#-------------------------------------------------------------------------------
if [[ "$1" == "-h" ]]
then
echo "usage: run.sh [-h] [-i] <Application_Dir> <Application_Exec> [Args...]"
@ -37,8 +29,4 @@ export GROUP_ID=$(id -g)
export GROUP_NAME=$(id -gn)
cd "${APPL_HOME_DIR}"
sbin/docker_mk_env
docker compose run --rm default /sbin/user_add_exec ${USER_ID} ${USER} ${HOME} ${GROUP_ID} ${GROUP_NAME} ${APPL_DIR}/${APPL_NAME} $*