From 4b57d12a3f2733440068012ebcbed71aadfe6a7d Mon Sep 17 00:00:00 2001 From: Horimoto Yasuhiro Date: Thu, 30 Jan 2025 16:06:27 +0900 Subject: [PATCH] MySQL 8.0.41 and Mroonga 14.13 --- README.md | 3 ++- mysql-8.0/Dockerfile | 8 ++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index fa45763..0c36db6 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,8 @@ Currently, groonga/mroonga provides these couples of versions. | tag | MySQL | Mroonga | Groonga | |------------------------|--------|---------|---------| -| mysql-8.0-latest | 8.0.40 | 14.12 | 14.1.2 | +| mysql-8.0-latest | 8.0.41 | 14.13 | 14.1.3 | +| mysql-8.0.41-14.13 | 8.0.41 | 14.13 | 14.1.3 | | mysql-8.0.40-14.12 | 8.0.40 | 14.12 | 14.1.2 | | mysql-8.0.30-12.06 | 8.0.30 | 12.06 | 12.0.6 | | mysql-8.0.29-12.04 | 8.0.29 | 12.04 | 12.0.4 | diff --git a/mysql-8.0/Dockerfile b/mysql-8.0/Dockerfile index ed6b805..e7fbbec 100644 --- a/mysql-8.0/Dockerfile +++ b/mysql-8.0/Dockerfile @@ -1,4 +1,4 @@ -FROM mysql:8.0.40-oraclelinux9 +FROM mysql:8.0.41-oraclelinux9 # TODO # Remove `--setopt=apache-arrow-almalinux.gpgcheck=0` option. @@ -8,8 +8,8 @@ FROM mysql:8.0.40-oraclelinux9 # error: failed to parse public key for /var/cache/yum/metadata/apache-arrow-almalinux-9-x86_64/RPM-GPG-KEY-Apache-Arrow # ``` -ENV groonga_version=14.1.2 \ - mroonga_version=14.12 +ENV groonga_version=14.1.3 \ + mroonga_version=14.13 RUN mkdir -p /etc/mysql/mysql.conf.d && \ touch /etc/mysql/mysql.conf.d/default-auth-override.cnf && \ @@ -33,6 +33,6 @@ RUN mkdir -p /docker-entrypoint-mroonga-initdb.d && \ -e 's,docker_process_init_files /,docker_process_init_files /docker-entrypoint-mroonga-initdb.d/* /,g' \ /usr/local/bin/docker-entrypoint.sh -# mysql:8.0.40 image has DB in /var/lib/mysql/. +# mysql:8.0.41 image has DB in /var/lib/mysql/. # This clears /var/lib/mysql/ to ensure creating a new DB on "docker run". VOLUME ["/var/lib/mysql"]