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 2024-09-09 14:45:41 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/mariadb-image (Old) and /work/SRC/openSUSE:Factory/.mariadb-image.new.10096 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "mariadb-image" Mon Sep 9 14:45:41 2024 rev:32 rq:1199638 version:unknown Changes: -------- --- /work/SRC/openSUSE:Factory/mariadb-image/mariadb-image.changes 2024-09-05 15:48:16.474779332 +0200 +++ /work/SRC/openSUSE:Factory/.mariadb-image.new.10096/mariadb-image.changes 2024-09-09 14:46:56.504927498 +0200 @@ -1,0 +2,5 @@ +Mon Sep 9 06:51:05 UTC 2024 - Dirk Mueller <dmuel...@suse.com> + +- Bump main package version + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ Dockerfile ++++++ --- /var/tmp/diff_new_pack.Rq0Isd/_old 2024-09-09 14:46:56.980947230 +0200 +++ /var/tmp/diff_new_pack.Rq0Isd/_new 2024-09-09 14:46:56.984947395 +0200 @@ -14,8 +14,8 @@ # You can contact the BCI team via https://github.com/SUSE/bci/discussions -#!BuildTag: opensuse/mariadb:11.4 -#!BuildTag: opensuse/mariadb:11.4-%RELEASE% +#!BuildTag: opensuse/mariadb:11.5 +#!BuildTag: opensuse/mariadb:11.5-%RELEASE% #!BuildTag: opensuse/mariadb:latest FROM opensuse/tumbleweed:latest @@ -27,13 +27,13 @@ LABEL org.opencontainers.image.authors="openSUSE (https://www.opensuse.org/)" LABEL org.opencontainers.image.title="openSUSE Tumbleweed MariaDB Server" LABEL org.opencontainers.image.description="MariaDB Server container based on the openSUSE Tumbleweed Base Container Image." -LABEL org.opencontainers.image.version="11.4" +LABEL org.opencontainers.image.version="11.5" LABEL org.opencontainers.image.url="https://www.opensuse.org" LABEL org.opencontainers.image.created="%BUILDTIME%" LABEL org.opencontainers.image.vendor="openSUSE Project" LABEL org.opencontainers.image.source="%SOURCEURL%" -LABEL org.opencontainers.image.ref.name="11.4-%RELEASE%" -LABEL org.opensuse.reference="registry.opensuse.org/opensuse/mariadb:11.4-%RELEASE%" +LABEL org.opencontainers.image.ref.name="11.5-%RELEASE%" +LABEL org.opensuse.reference="registry.opensuse.org/opensuse/mariadb:11.5-%RELEASE%" LABEL org.openbuildservice.disturl="%DISTURL%" LABEL org.opensuse.lifecycle-url="https://en.opensuse.org/Lifetime#openSUSE_BCI" LABEL org.opensuse.release-stage="released" @@ -43,7 +43,7 @@ CMD ["mariadbd"] EXPOSE 3306 # sanity check that the version from the tag is equal to the version of mariadb-client that we expect -RUN set -euo pipefail; [ "$(rpm -q --qf '%{version}' mariadb-client | cut -d '.' -f -2)" = "11.4" ] +RUN set -euo pipefail; [ "$(rpm -q --qf '%{version}' mariadb-client | cut -d '.' -f -2)" = "11.5" ] RUN set -euo pipefail; mkdir /docker-entrypoint-initdb.d ++++++ README.md ++++++ --- /var/tmp/diff_new_pack.Rq0Isd/_old 2024-09-09 14:46:57.024949053 +0200 +++ /var/tmp/diff_new_pack.Rq0Isd/_new 2024-09-09 14:46:57.036949552 +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.4 +$ podman run -it --rm -p 3306:3306 -e MARIADB_ROOT_PASSWORD=my-password registry.opensuse.org/opensuse/mariadb:11.5 ``` or: ```ShellSession -$ podman run -it --rm -p 3306:3306 -e MARIADB_ALLOW_EMPTY_ROOT_PASSWORD=1 registry.opensuse.org/opensuse/mariadb:11.4 +$ podman run -it --rm -p 3306:3306 -e MARIADB_ALLOW_EMPTY_ROOT_PASSWORD=1 registry.opensuse.org/opensuse/mariadb:11.5 ``` ### 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.4 +$ 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.5 ``` 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.