Compare commits
4 Commits
base-1.3.0
...
base-1.3.3
| Author | SHA1 | Date | |
|---|---|---|---|
| 5095c8d9ac | |||
| 77ed04d07b | |||
| db9a0b4279 | |||
| 065a98426c |
@@ -32,7 +32,8 @@ alias ll="ls -la"
|
||||
alias em="emacs"'
|
||||
#---------------------------------------------------------------------------------------------------
|
||||
|
||||
ARG MIRRORLIST='http://mirror.xor.rx3/mageia/distrib/9/x86_64 http://mirror.rx3.net/mageia/distrib/9/x86_64 ftp://ftp.proxad.net/mirrors/mageia.org/distrib/9/x86_64 http://distrib-coffee.ipsl.jussieu.fr/pub/linux/Mageia/distrib/9/x86_64'
|
||||
ARG MIRRORLIST_MGA='http://mirror.xor.rx3/mageia/distrib/9/x86_64 https://mirror.rx3.net/mageia/distrib/9/x86_64 ftp://ftp.proxad.net/mirrors/mageia.org/distrib/9/x86_64 http://distrib-coffee.ipsl.jussieu.fr/pub/linux/Mageia/distrib/9/x86_64'
|
||||
ARG MIRRORLIST_RX3='http://mirror.xor.rx3/rx3/distrib/9/x86_64 https://mirror.rx3.net/rx3/distrib/9/x86_64'
|
||||
|
||||
ARG GIT_MPM_REPO='https://git.rx3.org/gitea/Rx3/mpm/raw/tag/mpm-1.0.0'
|
||||
|
||||
@@ -42,8 +43,9 @@ RUN echo -e "${LOCALE_CONF}" | sed -e 's/ *$//' > /etc/locale.conf
|
||||
&& ln -s /usr/share/zoneinfo/${LOCALTIME} /etc/localtime \
|
||||
&& urpmi.removemedia -a \
|
||||
&& rm -f /var/cache/urpmi/mirrors.cache \
|
||||
&& urpmi.addmedia --distrib --mirrorlist "${MIRRORLIST}" \
|
||||
&& urpmi.update --no-ignore "Nonfree Release" "Nonfree Updates" "Tainted Release" "Tainted Updates" \
|
||||
&& urpmi.addmedia --distrib --mirrorlist "${MIRRORLIST_MGA}" \
|
||||
&& urpmi.addmedia --distrib --mirrorlist "${MIRRORLIST_RX3}" \
|
||||
&& for arch in "" "32bit "; do for media in "Core" "Nonfree" "Tainted"; do for type in "Release" "Updates"; do urpmi.update --no-ignore "${media} ${arch}${type}"; done; done; done \
|
||||
&& urpmi.update -a \
|
||||
&& urpmi --force --replacepkgs glibc locales locales-en \
|
||||
&& rpm -e $(rpm -qa | grep -e python -e dnf) gobject-introspection \
|
||||
|
||||
@@ -6,11 +6,14 @@ This project aims to build a Mageia base docker image to be used by other Rx3 pa
|
||||
|
||||
Features:
|
||||
- Curtently based on official Mageia 9 docker image from github.io,
|
||||
- Enable urpmi "Core", "Nonfree" and "Tainted" medium from mirror list:
|
||||
- Enable urpmi "Core", "Nonfree" and "Tainted" medium (x86-64 + i586) from mirror list:
|
||||
- http://mirror.xor.rx3/,
|
||||
- http://mirror.rx3.net/,
|
||||
- https://mirror.rx3.net/,
|
||||
- ftp://ftp.proxad.net/,
|
||||
- http://distrib-coffee.ipsl.jussieu.fr/,
|
||||
- Enable urpmi "Rx3" default and testings (disabled) media from mirror list:
|
||||
- http://mirror.xor.rx3/,
|
||||
- https://mirror.rx3.net/,
|
||||
- Add Rx3 bash seting,
|
||||
- Mono layered (Mageia + Rx3 Updates),
|
||||
- Strip down base (python & dnf removed).
|
||||
|
||||
@@ -1,3 +1,29 @@
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
Rx3-Docker/Base V 1.3.3 - A. GIBERT - 2025/05/28
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
- Add Rx3 testing media source,
|
||||
- Rebuild for updates.
|
||||
|
||||
|
||||
|
||||
Rx3-Docker/Base V 1.3.2 - A. GIBERT - 2025/04/13
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
- Add i586 arch,
|
||||
- Rebuild for updates.
|
||||
|
||||
|
||||
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
Rx3-Docker/Base V 1.3.1 - A. GIBERT - 2025/03/08
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
- Add Rx3 urpmi media source,
|
||||
- Rebuild for updates.
|
||||
|
||||
|
||||
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
Rx3-Docker/Base V 1.3.0 - A. GIBERT - 2024/11/10
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
@@ -9,7 +35,7 @@ Rx3-Docker/Base V 1.3.0 - A. GIBERT - 2024/11/10
|
||||
- Strip down the base:
|
||||
- Remove python,
|
||||
- Remove dnf,
|
||||
- Rmove xz,
|
||||
- Remove xz,
|
||||
- Remove unused libraries.
|
||||
|
||||
|
||||
|
||||
16
compose.yaml
16
compose.yaml
@@ -1,4 +1,4 @@
|
||||
# Rx3-Docker/Base Mageia Docker Image
|
||||
# Rx3-Docker/Base Docker Image
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
name: ${IMG_NAME}
|
||||
@@ -14,12 +14,12 @@ services:
|
||||
build:
|
||||
context: .
|
||||
args:
|
||||
- IMG_NAME=${IMG_NAME}
|
||||
- IMG_NAME_FULL=${IMG_NAME_FULL}
|
||||
- IMG_VERSION=${IMG_VERSION}
|
||||
- IMG_MAINTAINER=${IMG_MAINTAINER}
|
||||
- LANG=${LANG}
|
||||
- LANGUAGE=${LANGUAGE}
|
||||
- LOCALTIME=${LOCALTIME}
|
||||
IMG_NAME: ${IMG_NAME}
|
||||
IMG_NAME_FULL: ${IMG_NAME_FULL}
|
||||
IMG_VERSION: ${IMG_VERSION}
|
||||
IMG_MAINTAINER: ${IMG_MAINTAINER}
|
||||
LANG: ${LANG}
|
||||
LANGUAGE: ${LANGUAGE}
|
||||
LOCALTIME: ${LOCALTIME}
|
||||
|
||||
restart: unless-stopped
|
||||
|
||||
Reference in New Issue
Block a user