Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package mariadb-image for openSUSE:Factory checked in at 2026-06-15 19:47:28 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/mariadb-image (Old) and /work/SRC/openSUSE:Factory/.mariadb-image.new.1981 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "mariadb-image" Mon Jun 15 19:47:28 2026 rev:70 rq:1359423 version:unknown Changes: -------- --- /work/SRC/openSUSE:Factory/mariadb-image/mariadb-image.changes 2026-06-02 16:11:36.368975972 +0200 +++ /work/SRC/openSUSE:Factory/.mariadb-image.new.1981/mariadb-image.changes 2026-06-15 19:51:36.999979799 +0200 @@ -1,0 +2,10 @@ +Mon Jun 15 08:04:58 UTC 2026 - SUSE Update Bot <[email protected]> + +- adjust for new version + +------------------------------------------------------------------- +Mon Jun 15 08:02:42 UTC 2026 - SUSE Update Bot <[email protected]> + +- improve image cleaning + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ Dockerfile ++++++ --- /var/tmp/diff_new_pack.99q38p/_old 2026-06-15 19:51:37.780012511 +0200 +++ /var/tmp/diff_new_pack.99q38p/_new 2026-06-15 19:51:37.784012679 +0200 @@ -17,7 +17,7 @@ #!ExclusiveArch: aarch64 ppc64le s390x x86_64 #!BuildTag: opensuse/mariadb:%%mariadb_version%%-%RELEASE% #!BuildTag: opensuse/mariadb:%%mariadb_version%% -#!BuildTag: opensuse/mariadb:11.8 +#!BuildTag: opensuse/mariadb:12.3 #!BuildTag: opensuse/mariadb:latest FROM opensuse/bci/bci-micro:latest AS target @@ -33,13 +33,13 @@ # sanity check that the version from the tag is equal to the version of mariadb that we expect RUN set -euo pipefail; \ [ "$(rpm --root /target -q --qf '%{version}' mariadb | \ - cut -d '.' -f -2)" = "11.8" ] + cut -d '.' -f -2)" = "12.3" ] # cleanup logs and temporary files RUN set -euo pipefail; zypper -n --installroot /target clean -a; \ t=$(mktemp -d); mv /target/usr/lib/sysimage/rpm/Packages.db $t; rpmdb --rebuilddb --dbpath=$t; \ rm /target/usr/lib/sysimage/rpm/*.db && mv $t/Packages.db /target/usr/lib/sysimage/rpm/; \ - rm -rf {/target,}/var/log/{alternatives.log,lastlog,tallylog,zypper.log,zypp/history,YaST2}; \ + rm -rf {/target,}/var/log/{alternatives.log,lastlog,suseconnect.log,tallylog,zypper.log,zypp/history,YaST2}; \ rm -rf {/target,}/run/*; \ rm -f {/target,}/etc/{shadow-,group-,passwd-,.pwd.lock}; \ rm -f {/target,}/usr/lib/sysimage/rpm/.rpm.lock; \ @@ -51,7 +51,6 @@ RUN set -euo pipefail; sed -i 's/^\([^:]*:[^:]*:\)[^:]*\(:.*\)$/\1\2/' /target/etc/shadow FROM opensuse/bci/bci-micro:latest COPY --from=builder /target / -RUN set -euo pipefail; rm -vf /usr/lib/sysimage/rpm/Index.db # Define labels according to https://en.opensuse.org/Building_derived_containers # labelprefix=org.opensuse.application.mariadb LABEL org.opencontainers.image.title="openSUSE Tumbleweed MariaDB Server" ++++++ README.md ++++++ --- /var/tmp/diff_new_pack.99q38p/_old 2026-06-15 19:51:37.864016034 +0200 +++ /var/tmp/diff_new_pack.99q38p/_new 2026-06-15 19:51:37.872016369 +0200 @@ -12,13 +12,13 @@ The only environment variable required to start the container is the MariaDB root password. ```ShellSession -$ podman run -it --rm -p 3306:3306 -e MARIADB_ROOT_PASSWORD=my-password registry.opensuse.org/opensuse/mariadb:11.8 +$ podman run -it --rm -p 3306:3306 -e MARIADB_ROOT_PASSWORD=my-password registry.opensuse.org/opensuse/mariadb:12.3 ``` or: ```ShellSession -$ podman run -it --rm -p 3306:3306 -e MARIADB_ALLOW_EMPTY_ROOT_PASSWORD=1 registry.opensuse.org/opensuse/mariadb:11.8 +$ podman run -it --rm -p 3306:3306 -e MARIADB_ALLOW_EMPTY_ROOT_PASSWORD=1 registry.opensuse.org/opensuse/mariadb:12.3 ``` ### Volumes @@ -33,7 +33,7 @@ To mount a host directory as a volume for your data run the following command: ```ShellSession -$ podman run -it --rm -v /my/own/datadir:/var/lib/mysql:Z -p 3306:3306 -e MARIADB_ROOT_PASSWORD=my-password registry.opensuse.org/opensuse/mariadb:11.8 +$ podman run -it --rm -v /my/own/datadir:/var/lib/mysql:Z -p 3306:3306 -e MARIADB_ROOT_PASSWORD=my-password registry.opensuse.org/opensuse/mariadb:12.3 ``` The `-v /my/own/datadir:/var/lib/mysql:Z` part of the command mounts the `/my/own/datadir` directory from the underlying host system as `/var/lib/mysql` inside the container, where MariaDB will by default write its data files.
